> ## 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 full bank-account details (live)

> Dereference the integrator's own registered bank account into the FULL details held by the settlement partner — every known rail field with a non-empty value, plus `type`/`name`. This is a LIVE read on every call; details are never stored on our side (LGPD posture). `available: false` means a bank account IS registered but the live fetch failed (degrade gracefully); `bankAccount: null` means no bank account is registered at all.



## OpenAPI

````yaml https://api.caratuva.com/docs-json get /v1/accounts/self/payout-config/details
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/payout-config/details:
    get:
      tags:
        - Accounts
      summary: Get your own full bank-account details (live)
      description: >-
        Dereference the integrator's own registered bank account into the FULL
        details held by the settlement partner — every known rail field with a
        non-empty value, plus `type`/`name`. This is a LIVE read on every call;
        details are never stored on our side (LGPD posture). `available: false`
        means a bank account IS registered but the live fetch failed (degrade
        gracefully); `bankAccount: null` means no bank account is registered at
        all.
      operationId: ConnectedAccountsController_getSelfPayoutConfigDetails
      parameters: []
      responses:
        '200':
          description: Bank account details (live) or absence thereof
          content:
            application/json:
              schema:
                type: object
                properties:
                  available:
                    type: boolean
                  bankAccount:
                    type: object
                    properties:
                      type:
                        type: string
                      name:
                        type: string
                        nullable: true
                      details:
                        type: array
                        items:
                          type: object
                          properties:
                            key:
                              type: string
                            value:
                              type: string
                          required:
                            - key
                            - value
                          additionalProperties: false
                    required:
                      - type
                      - name
                      - details
                    additionalProperties: false
                    nullable: true
                required:
                  - available
                  - bankAccount
                additionalProperties: false
              examples:
                default:
                  value:
                    available: true
                    bankAccount:
                      type: pix
                      name: Acme Payments LTDA
                      details:
                        - key: pixKey
                          value: acme@pix.example.com
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````