POST
/
withdrawals
/
payment-method
curl --request POST \
  --url https://api.exchange.coinbase.com/withdrawals/payment-method \
  --header 'Content-Type: application/json' \
  --header 'cb-access-key: <api-key>' \
  --header 'cb-access-passphrase: <api-key>' \
  --header 'cb-access-sign: <api-key>' \
  --header 'cb-access-timestamp: <api-key>' \
  --data '{
  "amount": "<string>",
  "payment_method_id": "<string>",
  "currency": "<string>"
}'
{
  "id": "<string>",
  "amount": "<string>",
  "currency": "<string>",
  "payout_at": "<string>",
  "fee": "<string>"
}

Withdraw funds to a payment method

See the Payment Methods section for retrieving your payment methods.

API Key Permissions

This endpoint requires the “transfer” permission. API key is restricted to the default profile.

Authorizations

cb-access-key
string
header
required
cb-access-passphrase
string
header
required
cb-access-sign
string
header
required
cb-access-timestamp
string
header
required

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.