POST
/
v1
/
wallet
/
address
Generate New Addresses
curl --request POST \
  --url https://sandbox-openapi.bisonblock.ai/api/v1/wallet/address \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'BIZ-API-NONCE: <api-key>' \
  --header 'BIZ-API-SIGNATURE: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "slip44": 1,
  "num": 100
}'
{
  "code": 123,
  "data": [
    {
      "address": "<string>"
    }
  ],
  "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.

Body

application/json
slip44
integer
required

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

Required range: x >= 0
num
integer

The number of addresses to generate, default is 1

Required range: 1 <= x <= 200

Response

200 - */*

OK

code
integer

0 is for success, others are for failure

data
object[]
msg
string