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

# Get balance

> List all accounts and current balances for the authenticated user.

<Note>
  Requires `Authorization: Bearer <user-access-token>` — the token from [Verify login code](/api-reference/users/verify-otp). See [Authentication](/api-reference/financials/introduction#authentication) for details.
</Note>

Returns all Qash accounts owned by the authenticated user, including their credit/debit totals. Use the `id` from the response to reference a specific account in deposit, transfer, or transaction requests.

<Note>
  This returns the same data as [List accounts](/api-reference/account-management/list-accounts) — both are backed by the same endpoint.
</Note>

## Request

```http theme={null}
GET /api/v1/user/balance
Authorization: Bearer <user-access-token>
```

No body or query parameters.

## Response

**200 OK**

```json theme={null}
{
  "items": [
    {
      "id": 619,
      "asset": "USDC",
      "type": "LIABILITY",
      "credits": "1500.00000000",
      "debits": "0.00000000"
    }
  ],
  "meta": {
    "totalItems": 1,
    "totalPages": 1,
    "currentPage": 1,
    "itemsPerPage": 20
  }
}
```

### `items[]`

| Field     | Type   | Description                                                                 |
| --------- | ------ | --------------------------------------------------------------------------- |
| `id`      | number | Account ID                                                                  |
| `asset`   | string | Currency — always `"USDC"` today                                            |
| `type`    | string | `"LIABILITY"`                                                               |
| `credits` | string | Total decimal amount credited to the account — not a smallest-unit integer  |
| `debits`  | string | Total decimal amount debited from the account — not a smallest-unit integer |

<Info>
  Available balance is `credits - debits`. There is no separate `balance` field in the response.
</Info>

### `meta`

| Field          | Type   | Description                 |
| -------------- | ------ | --------------------------- |
| `totalItems`   | number | Total number of accounts    |
| `totalPages`   | number | Total pages                 |
| `currentPage`  | number | Current page number         |
| `itemsPerPage` | number | Items per page (default 20) |
