Skip to main content
POST
/
v1
/
withdrawal
/
send
Request New Withdrawal
curl --request POST \
  --url https://sandbox-openapi.bisonblock.ai/api/v1/withdrawal/send \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'BIZ-API-NONCE: <api-key>' \
  --header 'BIZ-API-SIGNATURE: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requestId": "<string>",
  "slip44": 123,
  "contractAddress": "<string>",
  "address": "<string>",
  "amount": "<string>"
}'
{
  "code": 123,
  "data": {},
  "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
requestId
string
required

A unique ID for the withdrawal request. This can be a UUID string.

slip44
integer
required

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

address
string
required

The address to withdrawal to.

amount
string
required

The amount to withdrawal.

contractAddress
string

smart contract address for token, null for main-chain token

Response

200 - */*

OK

code
integer

0 is for success, others are for failure

data
object
msg
string