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

> Submit the organization's company details (legal name, CNPJ, business contact) plus expected monthly USD volume and corridors so the Caratuva team can qualify it for live mode. Idempotent — an org with an open (pending) or already-approved request gets that existing row back instead of a duplicate; a previously-rejected org may submit a fresh request. The Caratuva team is notified and approves out-of-band.



## OpenAPI

````yaml https://api.caratuva.com/docs-json post /v1/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:
  - name: Invoices
    description: Create and manage invoices that collect for one of your sellers.
  - name: Payments
    description: Create a payment (keep your own checkout), fetch it, or cancel it.
  - name: Accounts
    description: >-
      Onboard and manage your sellers, buyers, and your own (self) account at
      the settlement partner.
  - name: Webhooks
    description: Subscribe to outbound event notifications and manage signing secrets.
  - name: API keys
    description: Issue, list, and revoke the API keys that authenticate your integration.
  - name: Access
    description: Request and check production (live-mode) access for your organization.
  - name: Reports
    description: Pull settlement and transfer-pricing reports.
paths:
  /v1/access/request:
    post:
      tags:
        - Access
      summary: Request production (live mode) access
      description: >-
        Submit the organization's company details (legal name, CNPJ, business
        contact) plus expected monthly USD volume and corridors so the Caratuva
        team can qualify it for live mode. Idempotent — an org with an open
        (pending) or already-approved request gets that existing row back
        instead of a duplicate; a previously-rejected org may submit a fresh
        request. The Caratuva team is notified and approves out-of-band.
      operationId: ProductionAccessController_request
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                legalName:
                  type: string
                  minLength: 1
                  maxLength: 200
                cnpj:
                  type: string
                  pattern: ^\d{14}$
                businessContactEmail:
                  type: string
                  format: email
                expectedMonthlyVolume:
                  type: string
                  pattern: ^\d+(\.\d{1,2})?$
                corridors:
                  type: array
                  items:
                    type: string
                    minLength: 1
                    maxLength: 64
                  minItems: 1
                  maxItems: 20
              required:
                - legalName
                - cnpj
                - businessContactEmail
                - expectedMonthlyVolume
                - corridors
              additionalProperties: false
            examples:
              default:
                value:
                  legalName: ACME Imports LLC
                  cnpj: '23236594000130'
                  businessContactEmail: ops@acme.com
                  expectedMonthlyVolume: '250000.00'
                  corridors:
                    - US-BR
                    - EU-BR
      responses:
        '201':
          description: >-
            Production-access request created (or the existing open/approved
            request returned)
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  orgId:
                    type: string
                  legalName:
                    type: string
                  cnpj:
                    type: string
                  businessContactEmail:
                    type: string
                  expectedMonthlyVolume:
                    type: string
                  corridors:
                    type: array
                    items:
                      type: string
                  status:
                    type: string
                    enum:
                      - pending
                      - approved
                      - rejected
                  note:
                    type: string
                    nullable: true
                  requestedAt:
                    type: string
                  decidedAt:
                    type: string
                    nullable: true
                required:
                  - id
                  - orgId
                  - legalName
                  - cnpj
                  - businessContactEmail
                  - expectedMonthlyVolume
                  - corridors
                  - status
                  - note
                  - requestedAt
                  - decidedAt
                additionalProperties: false
              examples:
                default:
                  value:
                    id: ckpar001
                    orgId: ckorg001
                    legalName: ACME Imports LLC
                    cnpj: '23236594000130'
                    businessContactEmail: ops@acme.com
                    expectedMonthlyVolume: '250000.00'
                    corridors:
                      - US-BR
                      - EU-BR
                    status: pending
                    note: null
                    requestedAt: '2026-06-30T12:00:00.000Z'
                    decidedAt: null
        '400':
          description: >-
            ValidationError — The request body failed validation (e.g. CNPJ is
            not 14 digits, or at least one corridor is required).
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    example: 400
                  error:
                    type: string
                    example: ValidationError
                  message:
                    type: string
                    example: >-
                      The request body failed validation (e.g. CNPJ is not 14
                      digits, or at least one corridor is required).
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````