Accounts
List and search indexed Starknet wallet addresses
The accounts endpoint lists Starknet addresses we've seen in any indexed transfer.
GET /api/accounts/
Query parameters
| Parameter | Type | Notes |
|---|---|---|
address | string | Exact match. Any common 0x form works. |
search | string | Substring search across the address |
page | integer | 1-indexed, defaults to 1 |
limit | integer | Page size, defaults to 25, max 100 |
ordering | string | created_on, -created_on, address |
Example
Response
json
1{2 "count": 1,3 "next": null,4 "previous": null,5 "results": [6 {7 "id": 12345,8 "address": "0x072aabc660eb43b9e80495e7ee27234ca3fac629807fe71888446fb995a8cb1f",9 "tokens": [],10 "created_on": "2024-12-20T21:08:38Z",11 "updated_on": "2026-01-25T14:43:57Z"12 }13 ]14}Info
The tokens array only fills in when you hit the single-account endpoint (/api/accounts/{id}/). On the list endpoint it's empty - no point loading every account's full holdings just to render a paginated list.
See also
- Single account - detailed view of one wallet
- Account balances - current balance per (account, token) pair