Accounts
Get balances
Retrieves credit balances for an account.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
id*string
Query Parameters
currency?string
Filter by currency.
asset_code?string
Filter by asset code.
Response Body
application/json
curl -X GET "https://example.com/accounts/string/balances"{
"balances": [
{
"currency": "USD",
"available": 50000
},
{
"asset_name": "Northwind API credits",
"asset_code": "NW_CRED",
"available": 2
}
]
}