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

# Issue an anonymous hosted-app session

> For Jurat-owned UI clients. Do not call this directly from public browser code.



## OpenAPI

````yaml /api-reference/openapi.yaml post /auth/issue-anon-jwt
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:
  /auth/issue-anon-jwt:
    post:
      summary: Issue an anonymous hosted-app session
      description: >-
        For Jurat-owned UI clients. Do not call this directly from public
        browser code.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - clientId
                - clientSecret
              properties:
                clientId:
                  type: string
                clientSecret:
                  type: string
      responses:
        '200':
          description: Anonymous session cookie issued
        '400':
          $ref: '#/components/responses/ApiError'
components:
  responses:
    ApiError:
      description: Structured API error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - requestId
          properties:
            code:
              type: string
            message:
              type: string
            requestId:
              type: string
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string

````