Crypto and Fiat Withdrawal
Request withdrawal from sub-account wallets and bank accounts.
Withdrawal to an external Wallet
POST https://live.betaapp.com/v1/order/withdrawal
Headers
Name
Type
Description
Authorization*
String
Bearer {access_token}
x-sub-account-id*
String
Sub Account ID
accept*
String
application/json
Request Body
Name
Type
Description
target_asset*
String
Crypto asset
network*
String
Crypto asset's network
target_destination*
String
Crypto wallet
target_amount*
String
Amount to be processed
target_destination_tag
String
Crypto wallet tag (If applicable)
instant_payment_type
String
Only for Fiat Withdrawal
Brazil: PIX
Mexico: SPEI
Request Example for Crypto Withdrawal:
curl -X 'POST' \
'https://live.betaapp.com/v1/order/withdrawal' \
-H 'accept: application/json' \
-H 'X-sub-account-id: 22376b76...43083b' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6InJlaEF1NURPY...ctfx2I4g' \
-H 'Content-Type: application/json' \
-d '{
"instant_payment_type": "",
"network": "bitcoin",
"target_amount": 1,
"target_asset": "BTC",
"target_destination": "014027...57",
"target_destination_tag": ""
}'Request Example for Fiat Withdrawal:
Response Example for both Fiat and Crypto:
Last updated