API
ReferenceAccount

Crypto withdrawal status

Open raw markdownFor pasting into AI assistants
GET
/public/v1/crypto-withdraw/{id}

One crypto withdrawal by the withdrawal_id returned when it was created. tx_hash and network_fee are null until the transaction is broadcast. Poll this until status settles at SUCCESS or FAILED; a failed withdrawal has been refunded to your balance.

AuthorizationBearer <token>

API key generated from your account settings on the website. Send as Authorization: Bearer csd_....

In: header

Path Parameters

id*number

Withdrawal id

Response Body

application/json

curl -X GET "https://example.com/public/v1/crypto-withdraw/0"
{  "withdrawal_id": 1,  "status": "CREATED",  "balance_amount": -9007199254740991,  "token_amount": 0,  "ticker": "BTC",  "created_at": "2019-08-24T14:15:22Z",  "tx_hash": "string",  "network_fee": "string"}