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

# Request production (live mode) access for the organization

> Submits the org’s first company details + expected volume. Idempotent — an open or approved request is returned as-is. The Caratuva team is notified and approves out-of-band.



## OpenAPI

````yaml https://api.caratuva.com/docs-json post /v1/production-access/request
openapi: 3.0.0
info:
  title: Caratuva API
  description: >-
    Cross-border B2B payments. Fiat on-ramp → USDC → PIX off-ramp.


    Every request runs in **test** or **live** mode on this single host — there
    is no separate sandbox URL. API keys carry the mode in their prefix
    (`pk_test_…` / `pk_live_…`); dashboard JWTs start in test and re-mint via
    `POST /v1/auth/switch-mode`. Test mode runs the full pipeline against a
    sandbox payment instance (KYB/KYC auto-approve, no real money); live runs on
    real rails and requires approved KYB. Test and live data are fully isolated.
    Check readiness with `GET /v1/onboarding/status`.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/production-access/request:
    post:
      tags:
        - production-access
      summary: Request production (live mode) access for the organization
      description: >-
        Submits the org’s first company details + expected volume. Idempotent —
        an open or approved request is returned as-is. The Caratuva team is
        notified and approves out-of-band.
      operationId: ProductionAccessController_request
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestProductionAccessDto'
      responses:
        '201':
          description: Production-access request created or returned
      security:
        - apiKey: []
        - bearer: []
components:
  schemas:
    RequestProductionAccessDto:
      type: object
      properties: {}
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````