Withdrawals API Playground
Send real, HMAC-signed requests to the withdrawals endpoints and inspect the live response.
POST/api/withdrawals
cURL
- curl --location --request POST 'https://api.bitnob.com/api/withdrawals' \
- --header 'Content-Type: application/json' \
- --header 'X-Auth-Client: {{clientId}}' \
- --header 'X-Auth-Timestamp: {{timestamp}}' \
- --header 'X-Auth-Nonce: {{nonce}}' \
- --header 'X-Auth-Signature: {{signature}}' \
- --data '{
- "to_address": "0xd0438C776d03df4FCfF69db78B97e2E6B5Cf033b",
- "amount": "1000000",
- "currency": "USDT",
- "chain": "ethereum",
- "reference": "withdraw-1776440856915922000",
- "memo": "",
- "description": "Vendor payment"
- }'
Response
// Awaiting response...