GET
/
api
/
v1
/
wallet
/
balance
/
token
/
{network}
/
{contractToken}
/
{address}
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/balance/token/{network}/{contractToken}/{address} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "balance": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

network
string
required

The blockchain network (XDC, ETH, BSC, POL).

contractToken
string
required

The contract address of the token.

address
string
required

The wallet address.

Response

200
application/json

Token balance retrieved successfully

The response is of type object.