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

ParameterTypeNotes
addressstringExact match. Any common 0x form works.
searchstringSubstring search across the address
pageinteger1-indexed, defaults to 1
limitintegerPage size, defaults to 25, max 100
orderingstringcreated_on, -created_on, address

Example

Response

Code
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