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

# List Bank Accounts

> Returns all bank accounts for the authenticated organization. Requires a Bridge customer to be set up.



## OpenAPI

````yaml /api-reference/openapi.json get /bank-accounts
openapi: 3.1.0
info:
  title: Camino Treasury API
  description: >-
    API for managing treasury wallets, tracking transfers (on-chain and fiat) in
    a unified feed, depositing into C0, withdrawing to wallets, and claiming
    yield distributions.
  version: 1.0.0
servers:
  - url: https://api.caminotreasury.com/v1
security:
  - apiKeyAuth: []
paths:
  /bank-accounts:
    get:
      tags:
        - Bank Accounts
      summary: List Bank Accounts
      description: >-
        Returns all bank accounts for the authenticated organization. Requires a
        Bridge customer to be set up.
      operationId: listBankAccounts
      responses:
        '200':
          description: List of bank accounts
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/BankAccount'
                  count:
                    type: integer
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    BankAccount:
      type: object
      description: >-
        A bank account linked to the organization via Bridge. Provisioned via
        the dashboard (Plaid Link → Bridge external account). Internal fields
        (organization/user/Bridge/Plaid ids, active flag) are not exposed.
      required:
        - id
        - bankName
        - accountOwnerName
        - routingNumber
        - accountNumberLast4
        - checkingOrSavings
        - accountType
        - accountOwnerType
        - currency
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
          format: uuid
          description: >-
            Bank account UUID. Used as the identifier across the API and in
            `Transfer.bankAccount.id`.
        bankName:
          type: string
          description: Human-readable name of the bank (e.g., "Chase").
        accountOwnerName:
          type: string
        businessName:
          type: string
          nullable: true
          description: Set when `accountOwnerType` is `business`.
        accountType:
          type: string
          description: Geo of the account. Currently always `us`.
        accountOwnerType:
          type: string
          description: Either `business` or `individual`.
        currency:
          type: string
          description: ISO 4217 currency code (lowercase). Currently always `usd`.
        routingNumber:
          type: string
        accountNumberLast4:
          type: string
        checkingOrSavings:
          type: string
          enum:
            - checking
            - savings
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      example:
        id: 11111111-2222-3333-4444-555555555555
        bankName: Acme Bank
        accountOwnerName: Acme Corp
        businessName: Acme Inc.
        accountType: us
        accountOwnerType: business
        currency: usd
        routingNumber: '021000021'
        accountNumberLast4: '1234'
        checkingOrSavings: checking
        createdAt: '2026-01-15T10:30:00.000Z'
        updatedAt: '2026-01-15T10:30:00.000Z'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message
        details:
          type: object
          description: Optional validation details
  responses:
    Unauthorized:
      description: Unauthorized - Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Not Found - Resource does not exist
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: Too Many Requests - Rate limit exceeded. Check the `Retry-After` header.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Pass your key in the `x-api-key` header.

````