curl --request GET \
--url https://api.onchainden.com/api/v1/accounts/{id}/balances \
--header 'Authorization: Bearer <token>'{
"data": {
"accountId": "<string>",
"balances": [
{
"networkId": 123,
"symbol": "ETH",
"name": "Ether",
"amount": "1.5",
"decimals": 123,
"contractAddress": "<string>"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
}Retrieves all token balances for an account across all networks.
curl --request GET \
--url https://api.onchainden.com/api/v1/accounts/{id}/balances \
--header 'Authorization: Bearer <token>'{
"data": {
"accountId": "<string>",
"balances": [
{
"networkId": 123,
"symbol": "ETH",
"name": "Ether",
"amount": "1.5",
"decimals": 123,
"contractAddress": "<string>"
}
],
"updatedAt": "2023-11-07T05:31:56Z"
}
}