GET
/
profiles
/
{profile_id}
/
balances
/
{asset}
Get Profile Balance
curl --request GET \
  --url https://api.paxos.com/v2/profiles/{profile_id}/balances/{asset} \
  --header 'Authorization: Bearer <token>'
{
  "asset": "BTC",
  "available": "1.23103715",
  "trading": ".25"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Path Parameters

profile_id
string
required
asset
string
required

Response

200 - application/json

A successful response.

A ProfileBalance represents the holdings of a particular asset within a profile.