> ## 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.

# Check whether a recovery intent already exists



## OpenAPI

````yaml /api-reference/openapi.yaml post /recovery-cases/exists
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/exists:
    post:
      summary: Check whether a recovery intent already exists
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecoveryIntent'
      responses:
        '200':
          description: Duplicate lookup result
      security:
        - apiKeyAuth: []
          apiSecretAuth: []
        - bearerAuth: []
        - cookieAuth: []
components:
  schemas:
    RecoveryIntent:
      type: object
      required:
        - rec
        - txs
      properties:
        rec:
          type: object
          required:
            - lostAccount
            - recoveryAccount
            - chainId
            - reasonForRecovery
            - email
          properties:
            lostAccount:
              type: string
            recoveryAccount:
              type: string
            chainId:
              type: integer
            reasonForRecovery:
              enum:
                - lost key
                - inheritance
                - other
            email:
              type:
                - string
                - 'null'
        txs:
          type: array
          minItems: 1
          items:
            type: object
            required:
              - dest
              - value
              - data
            properties:
              dest:
                type: string
              value:
                type: string
              data:
                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

````