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

# List budgets

> Lists the applicant's budgets (spending pots) in this account with live balances. The default budget is created automatically the first time funds move or a card is issued.



## OpenAPI

````yaml /openapi.json get /v1/accounts/{id}/budgets
openapi: 3.1.0
info:
  title: Apocor Core API
  version: 1.0.0
  description: >-
    The Apocor Cards API is the integration surface for issuing and managing
    cards. Authenticate with your Apocor API key, onboard applicants, run KYC,
    and issue virtual or physical cards — all through one white-labeled API.
  contact:
    name: Apocor Support
    url: https://apocor.ai
servers:
  - url: https://sandbox.apocor.ai
    description: Sandbox (live)
  - url: https://api.apocor.ai
    description: Production
  - url: http://localhost:4000
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Exchange Apocor API keys for a short-lived access token.
  - name: Applicants
    description: End-users and businesses, plus their identity verification (KYC).
  - name: KYC
    description: >-
      Identity verification settings, hosted sessions, BYOK share tokens, direct
      document upload, and issuer readiness.
    x-group: Identity verification (KYC)
  - name: Accounts
    description: Funding accounts that back issued cards.
  - name: Programs
    description: Card programs that define product type, currency, and BIN.
  - name: Cardholders
    description: Approved applicants turned into cardholders.
  - name: Cards
    description: Issue and manage virtual and physical cards.
  - name: Transactions
    description: Card transaction history from the issuer or local ledger.
  - name: Widget SDK
    description: >-
      Public Apocor-branded proxy for Method 1 Widget.js (no auth). PAN/CVV
      still render in issuer PCI iframes.
  - name: Card funding
    description: >-
      Fund prepaid cards with stablecoins: Apocor wallet service or
      bring-your-own (BYO) external wallet.
    x-group: Card funding
paths:
  /v1/accounts/{id}/budgets:
    get:
      tags:
        - Budgets
      summary: List budgets
      description: >-
        Lists the applicant's budgets (spending pots) in this account with live
        balances. The default budget is created automatically the first time
        funds move or a card is issued.
      operationId: getAccountsByIdBudgets
      parameters:
        - $ref: '#/components/parameters/IdPath'
        - name: applicant_id
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Budgets with balances.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      account_id:
                        type: string
                      applicant_id:
                        type: string
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/Budget'
              example:
                data:
                  account_id: acct_abc123
                  applicant_id: app_abc123
                  data:
                    - id: bud_xyz789
                      account_id: acct_abc123
                      applicant_id: app_abc123
                      name: Default
                      is_default: true
                      balance:
                        available: '25.00'
                        currency: USD
                      created_at: '2026-08-20T12:00:00.000Z'
components:
  parameters:
    IdPath:
      name: id
      in: path
      required: true
      schema:
        type: string
      description: Resource identifier.
  schemas:
    Budget:
      type: object
      properties:
        id:
          type: string
          description: Budget id.
        account_id:
          type: string
        applicant_id:
          type: string
        name:
          type: string
        is_default:
          type: boolean
          description: True for the automatically created default budget.
        balance:
          type: object
          nullable: true
          properties:
            available:
              type: string
              example: '25.00'
            currency:
              type: string
              example: USD
        created_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer access token obtained from `POST /v1/oauth/token` using your
        Apocor API key.

````