> For the complete documentation index, see [llms.txt](https://docs.cardspro.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cardspro.com/api/cards/user-account-balance.md).

# User Account Balance

Retrieves the balance of one or more user accounts by currency or account name.

**Endpoint:** `GET /account/balance`

**Query Parameters:**

<table><thead><tr><th width="139.888916015625">Parameter</th><th width="118.111083984375">Type</th><th width="116.7777099609375">Required</th><th width="107.111083984375">Default</th><th>Description</th></tr></thead><tbody><tr><td><code>currency</code></td><td>String</td><td>No</td><td>-</td><td>Currency code (EUR, USD, etc.)</td></tr><tr><td><code>account</code></td><td>String</td><td>No</td><td>-</td><td>Specific account name</td></tr></tbody></table>

**Note:** If both parameters are provided, `account` takes precedence over `currency`.

**Response:**

```json
[
  {
    "total": 1234.56,
    "currency": "USD"
  },
  {
    "total": 5678.90,
    "currency": "EUR"
  }
]
```

**Response for Single Account Query:**

```json
[
  {
    "total": 1234.56,
    "currency": "USD"
  }
]
```

**Response Parameters:**

The endpoint returns an **array** of account balance objects:

<table><thead><tr><th width="136.77783203125">Field</th><th width="181.666748046875">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>total</code></td><td>Decimal</td><td>Total balance in the account </td></tr><tr><td><code>currency</code></td><td>String</td><td>Currency code of the account</td></tr></tbody></table>
