Skip to main content
POST
/
api
/
v4
/
main-account
/
withdraw-pay
Create withdraw request with specific withdraw amount (fee not included)
curl --request POST \
  --url https://whitebit.com/api/v4/main-account/withdraw-pay \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "ticker": "<string>",
  "amount": "<string>",
  "address": "<string>",
  "uniqueId": "<string>",
  "request": "<string>",
  "nonce": "<string>",
  "memo": "<string>",
  "provider": "<string>",
  "network": "<string>",
  "partialEnable": true,
  "beneficiary": {},
  "travelRule": {}
}
'
[]
Example:
  • When you create base withdraw and set amount = 100 USD, receiver will recieve 100 USD - fee amount, and your balance will decrease by 100 USD.
  • When you use this endpoint and set amount = 100 USD, receiver will recieve 100 USD, and your balance will decrease by 100 USD + fee amount.

Authorizations

X-TXC-APIKEY
string
header
required

API key authentication using signed requests

Body

application/json
ticker
string
required
amount
string
required
address
string
required
uniqueId
string
required
request
string
required
nonce
string
required
memo
string
provider
string
network
string
partialEnable
boolean
beneficiary
object
travelRule
object

Response

Validation succeeded and withdraw creation process is started. Go to deposit/withdraw history and check your request status by uniqueId.