GET
/
v1
/
wallet
/
address
/
list
Get Addresses History
curl --request GET \
  --url https://sandbox-openapi.bisonblock.ai/api/v1/wallet/address/list \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'BIZ-API-NONCE: <api-key>' \
  --header 'BIZ-API-SIGNATURE: <api-key>'
{
  "code": 123,
  "data": {
    "pageNo": 123,
    "pageSize": 123,
    "totalSize": 123,
    "totalPages": 123,
    "list": [
      {
        "address": "<string>"
      }
    ],
    "prevPage": 123,
    "nextPage": 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.

Query Parameters

pageNo
integer
default:1

The page index, starting from 1.

Required range: x >= 1
pageSize
integer
default:10

The number of items per page. Page size is optional. If not included, the default size will be 10

slip44
integer
default:-1

Chain's slip44 code, such as Bitcoin is 0, Ethereum is 60, Tron is 195. Refer to Registered coin types

Required range: x >= 0

Response

200 - */*

OK

code
integer

0 is for success, others are for failure

data
object
msg
string