Withdrawal

Crypto withdrawal

post

Withdraw in crypto to any specified address. You can send Cryptocurrency from your Fiat currency balance by using the 'convert_to' parameter.

Header parameters
X-Processing-KeystringRequired

Private key

X-Processing-SignaturestringRequired

Private secret key

Body
currencystringRequired
Currency ISO to be withdrawn. For a list of all available currencies, see Supported currencies.
convert_tostringOptional

If you want to auto convert for example EUR to BTC, specify this param as BTC or any other currency supported (see list of exchangeable pairs API method).

addressstringRequired

Cryptocurrency address where you want to send funds.

tagstringOptional

If it's XRP, the Tag/Memo field may be an essential part of addressing a wallet. Always specify the Tag that was provided to you by the recipient. If you send funds with missing or incorrect Tag/Memo field, the funds may be lost.

amountnumberOptional

Amount of funds to withdraw.

amount_tonumberOptional

Amount of funds to send in the transaction in the convert_to currency.

foreign_idstring · max: 255Required

Unique foreign ID in your system. Must not contain personal data, such as the user's name or email address.

end_user_referencestring · max: 255Optional

The persistent ID of the end user. Must not contain personal data, such as the user's name or email address.

Responses
200
OK
post
POST /api/v2/withdrawal/crypto HTTP/1.1
Host: app.cryptoprocessing.com
X-Processing-Key: text
X-Processing-Signature: text
Content-Type: application/json
Accept: */*
Content-Length: 160

{
  "currency": "string",
  "convert_to": "string",
  "address": "string",
  "tag": "string",
  "amount": 0,
  "amount_to": 0,
  "foreign_id": "string",
  "end_user_reference": "end_user_ref"
}
{
  "data": {
    "id": 678388,
    "foreign_id": "postman_auto_test_1665492104773",
    "type": "withdrawal_exchange",
    "status": "processing",
    "amount": "25.00000000",
    "sender_amount": "25.00000000",
    "sender_currency": "EUR",
    "receiver_currency": "BTC"
  }
}

Was this helpful?