cURL
curl --request GET \ --url https://api.agg.market/execution/balances \ --header 'Authorization: Bearer <token>' \ --header 'x-app-id: <api-key>'
{ "cash": [ { "tokenSymbol": "<string>", "totalRaw": "<string>", "decimals": 123, "chains": [ { "chainId": 123, "tokenAddress": "<string>", "balanceRaw": "<string>", "lastSyncedAt": "<string>" } ] } ], "positions": [ { "venue": "kalshi", "balance": 123 } ] }
Returns per-chain token balances for the user’s managed server wallets. Balances are aggregated by token symbol. It also returns positional balance for each venue.
Your application ID. Required for all app-tier and user-tier routes.
JWT access token returned by POST /auth/verify. Required for user-tier routes.
200
Show child attributes