List the balances for an account.
A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.
The unique identifier of the account.
"account_af2937b0-9846-4fe7-bfe9-ccc22d935114"
The number of resources to return per page.
The token for the next page of resources, if any.
Successfully listed balances.
A list of balances for an account.
The list of balances.
A balance of an asset.
{
"asset": {
"symbol": "btc",
"type": "crypto",
"name": "Bitcoin",
"decimals": 8
},
"amount": {
"btc": { "available": "2.5", "total": "3.0" },
"usd": {
"available": "252705.4",
"total": "303246.48"
}
}
}[
{
"asset": {
"symbol": "btc",
"type": "crypto",
"name": "Bitcoin",
"decimals": 8
},
"amount": {
"btc": { "available": "2.5", "total": "3.0" },
"usd": {
"available": "252705.4",
"total": "303246.48"
}
}
}
]The token for the next page of items, if any.
"eyJsYXN0X2lkIjogImFiYzEyMyIsICJ0aW1lc3RhbXAiOiAxNzA3ODIzNzAxfQ=="