Skip to main content
GET
/
accounts
/
balances
Retrieve all balances
curl --request GET \
  --url https://api.example.com/accounts/balances \
  --header 'x-digest-key: <x-digest-key>' \
  --header 'x-digest-signature: <x-digest-signature>' \
  --header 'x-digest-timestamp: <x-digest-timestamp>'
{
  "USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5": {
    "balance": "0.00"
  },
  "EURS:GCWPTOH75K6Y7B3F267SDWEY5OVDQEK6OQ2VUINEZFOL5HX544NECR6Y": {
    "balance": "20.23"
  }
}

Headers

x-digest-timestamp
string
required

Current Unix timestamp

x-digest-key
string
required

Your public api key

x-digest-signature
string
required

Digest Auth Signature

Response

On success, the endpoint will return a JSON object with detailed account balances for each asset.

Each key is an asset identifier and the value is an object containing the balance information.

{key}
object