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

# List Accounts

> Paginated list of Ledger accounts owned by your API key

```http theme={null}
GET /v1/accounts?limit=50&cursor=...
```

| Query param | Type   | Description                                       |
| ----------- | ------ | ------------------------------------------------- |
| `limit`     | int    | Max 200. Default 50.                              |
| `cursor`    | string | Opaque pagination token from a previous response. |

**Response**

```json theme={null}
{
  "accounts": [
    {
      "accountId": "acc_8f3a...",
      "depositAddress": "0xC0FFEE...",
      "depositChains": ["base", "ethereum", "polygon"],
      "balance": {
        "available": "1240.50",
        "locked": "85.00",
        "currency": "USDC"
      },
      "createdAt": "2026-05-06T12:00:00Z"
    }
  ],
  "nextCursor": null
}
```

`nextCursor` is `null` when there are no more results. Otherwise, pass it as `cursor` on the next request.
