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

# Get your own (the integrator's) account

> Fetch the integrator's own connected account (`role: self`) — the fee-payout identity provisioned automatically when your organization KYB is approved. Returns 404 until that provisioning happens.



## OpenAPI

````yaml https://api.caratuva.com/docs-json get /v1/accounts/self
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/accounts/self:
    get:
      tags:
        - Accounts
      summary: Get your own (the integrator's) account
      description: >-
        Fetch the integrator's own connected account (`role: self`) — the
        fee-payout identity provisioned automatically when your organization KYB
        is approved. Returns 404 until that provisioning happens.
      operationId: ConnectedAccountsController_getSelf
      parameters: []
      responses:
        '200':
          description: Self account
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  orgId:
                    type: string
                  role:
                    type: string
                    enum:
                      - seller
                      - buyer
                      - self
                  entityType:
                    type: string
                    enum:
                      - individual
                      - business
                  externalId:
                    type: string
                    nullable: true
                  email:
                    type: string
                    nullable: true
                  legalName:
                    type: string
                    nullable: true
                  displayName:
                    type: string
                    nullable: true
                  country:
                    type: string
                    nullable: true
                  receiverId:
                    type: string
                    nullable: true
                  status:
                    enum:
                      - created
                      - verifying
                      - approved
                      - rejected
                    type: string
                  hostedFlowUrl:
                    type: string
                    nullable: true
                  tosAccepted:
                    type: boolean
                  payoutConfigured:
                    type: boolean
                  payoutPending:
                    type: boolean
                  submitPending:
                    type: boolean
                  readyToCollect:
                    type: boolean
                  submittedAt:
                    type: string
                    nullable: true
                  approvedAt:
                    type: string
                    nullable: true
                  rejectedAt:
                    type: string
                    nullable: true
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                required:
                  - id
                  - orgId
                  - role
                  - entityType
                  - externalId
                  - email
                  - legalName
                  - displayName
                  - country
                  - receiverId
                  - status
                  - hostedFlowUrl
                  - tosAccepted
                  - payoutConfigured
                  - payoutPending
                  - submitPending
                  - readyToCollect
                  - submittedAt
                  - approvedAt
                  - rejectedAt
                  - createdAt
                  - updatedAt
                additionalProperties: false
              examples:
                default:
                  value:
                    id: ckself01
                    orgId: ckorg001
                    role: self
                    entityType: business
                    externalId: null
                    email: finance@fazendaboavista.com.br
                    legalName: Fazenda Boa Vista Café LTDA
                    displayName: Fazenda Boa Vista
                    country: BR
                    receiverId: rc_8a3f2b91
                    status: approved
                    hostedFlowUrl: null
                    tosAccepted: true
                    payoutConfigured: true
                    readyToCollect: true
                    submittedAt: '2026-06-30T12:00:00.000Z'
                    approvedAt: '2026-06-30T12:05:00.000Z'
                    rejectedAt: null
                    createdAt: '2026-06-30T11:55:00.000Z'
                    updatedAt: '2026-06-30T12:05:00.000Z'
        '404':
          description: >-
            NotFound — No self account yet — complete your organization KYB to
            provision it.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    example: 404
                  error:
                    type: string
                    example: NotFound
                  message:
                    type: string
                    example: >-
                      No self account yet — complete your organization KYB to
                      provision it.
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````