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

# Register a developer user



## OpenAPI

````yaml /api-reference/openapi.yaml post /auth/register
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/register:
    post:
      summary: Register a developer user
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthCredentials'
      responses:
        '201':
          description: Developer user created
        '400':
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    AuthCredentials:
      type: object
      required:
        - email
        - password
      properties:
        email:
          type: string
          format: email
        password:
          type: string
          minLength: 8
          maxLength: 32
          description: Must include uppercase, lowercase, number, and special character.
    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
  responses:
    ApiError:
      description: Structured API error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'

````