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

# List connected accounts (cursor-paginated)

> List the end-client connected accounts in the caller org + mode, most recently created first. Filter by `role` (`seller`/`buyer`) and/or `status`. The integrator's own `self` account is never returned here — fetch it via `GET /accounts/self`. Pass `cursor` (the previous response's `nextCursor`) to page; `nextCursor` is null when there are no more results.



## OpenAPI

````yaml https://api.caratuva.com/docs-json get /v1/accounts
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:
    get:
      tags:
        - Accounts
      summary: List connected accounts (cursor-paginated)
      description: >-
        List the end-client connected accounts in the caller org + mode, most
        recently created first. Filter by `role` (`seller`/`buyer`) and/or
        `status`. The integrator's own `self` account is never returned here —
        fetch it via `GET /accounts/self`. Pass `cursor` (the previous
        response's `nextCursor`) to page; `nextCursor` is null when there are no
        more results.
      operationId: ConnectedAccountsController_list
      parameters:
        - name: limit
          required: false
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
        - name: cursor
          required: false
          in: query
          schema: {}
        - name: status
          required: false
          in: query
          schema:
            enum:
              - created
              - verifying
              - approved
              - rejected
            type: string
        - name: role
          required: false
          in: query
          schema:
            enum:
              - seller
              - buyer
            type: string
      responses:
        '200':
          description: Page of connected accounts for the caller org + mode
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      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
                  nextCursor:
                    type: string
                    nullable: true
                required:
                  - data
                  - nextCursor
                additionalProperties: false
              examples:
                default:
                  value:
                    data:
                      - id: ckacc042
                        orgId: ckorg001
                        role: seller
                        entityType: business
                        externalId: merchant-42
                        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'
                    nextCursor: null
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````