POST
/
transfer
/
crypto-withdrawals
Create Crypto Withdrawal
curl --request POST \
  --url https://api.paxos.com/v2/transfer/crypto-withdrawals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ref_id": "idempotence_id",
  "profile_id": "b7b77d82-e6a7-4ae9-9904-36231aedf985",
  "asset": "BTC",
  "amount": "0.05",
  "destination_address": "1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2",
  "metadata": {
    "my_id": "4024ee50-eefb-4f2e-85c7-e7899c0b7da5"
  },
  "crypto_network": "BITCOIN"
}'
{
"id": "373b7966-4290-4be3-a604-51929173437b",
"customer_id": "72b2b4e6-d395-43d2-9b09-690fa6c1a664",
"profile_id": "1db50793-0a22-4d2a-8696-66fc4fd8e360",
"ref_id": "ABCZYX123",
"amount": "0.001",
"total": "0.00100223",
"fee": "0.00000223",
"asset": "BTC",
"balance_asset": "BTC",
"direction": "DEBIT",
"type": "CRYPTO_WITHDRAWAL",
"status": "PENDING",
"created_at": "2022-06-14T15:19:20.034294Z",
"updated_at": "2022-06-14T15:19:20.034294Z",
"destination_address": "1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2",
"crypto_network": "BITCOIN",
"auto_conversion": {}
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.