> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jurat.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a signed recovery case



## OpenAPI

````yaml /api-reference/openapi.yaml post /recovery-cases/new-case
openapi: 3.1.0
info:
  title: Jurat Recovery Integration API
  version: 1.0.0
  description: >-
    Versioned API for wallets and web3 apps integrating Jurat recovery and
    probate.
servers:
  - url: https://api.jurat.io/api/v1
    description: Production
  - url: http://localhost:3000/api/v1
    description: Local development
security: []
paths:
  /recovery-cases/new-case:
    post:
      summary: Create a signed recovery case
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignedRecoveryCase'
      responses:
        '200':
          description: Created case
      security:
        - apiKeyAuth: []
          apiSecretAuth: []
        - bearerAuth: []
        - cookieAuth: []
components:
  schemas:
    SignedRecoveryCase:
      type: object
      required:
        - case
        - transactions
        - signature
      properties:
        case: 62debfd8-a6b5-4485-b7e2-d4e7e90a6ce6
        transactions: 8a863473-ca71-44a0-9718-0178fed0982b
        signature:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Send `x-api-key` together with `x-api-secret`.
    apiSecretAuth:
      type: apiKey
      in: header
      name: x-api-secret
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    cookieAuth:
      type: apiKey
      in: cookie
      name: access_token

````