Skip to main content
GET
/
accounts
/
balances
/
{asset_id}
Retrieve specific asset balance
curl --request GET \
  --url https://api.example.com/accounts/balances/{asset_id} \
  --header 'x-digest-key: <x-digest-key>' \
  --header 'x-digest-signature: <x-digest-signature>' \
  --header 'x-digest-timestamp: <x-digest-timestamp>'
{
  "balance": "0.00"
}

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

Path Parameters

Response

On success, the endpoint will return a JSON object with the balance of the specified asset.

The response includes the total available balance of the specified asset, formatted as a string.

balance
string
required

The total available balance for the specified asset.