Single account

Detailed view of one wallet, including its token holdings

Fetch one account's full record, including the tokens it currently holds.

GET /api/accounts/{id}/

{id} is the integer account ID returned by the list endpoint, not the on-chain address. To look up by address, hit the list endpoint with ?address=... first.

Example

Response

Code
json
1{
2 "id": 12345,
3 "address": "0x072aabc660eb43b9e80495e7ee27234ca3fac629807fe71888446fb995a8cb1f",
4 "tokens": [
5 {
6 "token": {
7 "address": "0x053c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8",
8 "symbol": "USDC",
9 "name": "USD Coin",
10 "decimals": 6
11 },
12 "last_value": "1000000",
13 "balance": "6543110900255",
14 "balance_usd": "6543110.900255"
15 }
16 ],
17 "created_on": "2024-12-20T21:08:38Z",
18 "updated_on": "2026-01-25T14:43:57Z"
19}
Tip

This always shows current balances. For "what did this wallet hold last week?", use /api/balance-history/.