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

# Get individual cards balance

> Retrieve the funding balance for a company's Individual cards.

Retrieves the aggregate funding balance for the company's Individual cards. This is the Individual Cards counterpart of the Enterprise [Get holding balance](/api-reference/cards/holding/get-balance) endpoint. Requires an API key with access level 1 or higher.

<Note>
  Unlike Enterprise, which returns a single warranty account, Individual Cards funding is split across a holding wallet and per-card virtual balances. This endpoint returns the aggregate: the holding wallet balance, the total balance loaded across all cards, and accumulated fees. Available to companies with Individual Cards enabled, including US companies.
</Note>

## Query parameters

<ParamField query="blockchains" type="array">
  Blockchain networks to include when computing the total cards balance. Defaults to `POLYGON`. Possible values: `POLYGON`, `TRON`.
</ParamField>

## Response

<ResponseField name="holding_wallet_balance" type="number">
  Current balance of the company's Individual Cards holding wallet, in USD. This is the funding pool from which cards are loaded.
</ResponseField>

<ResponseField name="total_cards_balance" type="number">
  Sum of the virtual balances currently loaded across all the company's individual cards, in USD, for the requested blockchains.
</ResponseField>

<ResponseField name="accumulated_fees" type="number">
  Fees accumulated for the company's Individual Cards program, in USD.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/cards/individual-cards/balance?blockchains=POLYGON" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "holding_wallet_balance": 25000.00,
    "total_cards_balance": 8450.75,
    "accumulated_fees": 312.40
  }
  ```
</ResponseExample>
