GET
/
v1
/
wallet
/
balance
Get Balances List
curl --request GET \
  --url https://sandbox-openapi.bisonblock.ai/api/v1/wallet/balance \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'BIZ-API-NONCE: <api-key>' \
  --header 'BIZ-API-SIGNATURE: <api-key>'
{
  "code": 123,
  "data": [
    {
      "name": "<string>",
      "symbol": "<string>",
      "contractAddress": "<string>",
      "chainName": "<string>",
      "chainSymbol": "<string>",
      "slip44": 123,
      "balance": "<string>",
      "frozen": "<string>",
      "decimal": 123
    }
  ],
  "msg": "<string>"
}

Authorizations

BIZ-API-KEY
string
header
required

This field contains the API key.

BIZ-API-NONCE
string
header
required

This field contains the nonce.

BIZ-API-SIGNATURE
string
header
required

This field contains the signature.

Response

200 - */*

OK

code
integer

0 is for success, others are for failure

data
object[]
msg
string