Skip to main content
POST
/
withdrawals
/
counterparty
Withdraw to counterparty
curl --request POST \
  --url https://api.exchange.coinbase.com/withdrawals/counterparty \
  --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>",
  "counterparty_id": "<string>",
  "currency": "<string>"
}
'
{
  "id": "<string>",
  "counterparty_id": "<string>",
  "amount": "<string>",
  "currency": "<string>",
  "status": "UNKNOWN"
}

API Key Permissions

This endpoint requires the “transfer” permission. Withdrawals are restricted to the profile associated with the API key.

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
amount
string
required
counterparty_id
string
required
currency
string
required

Response

id
string
counterparty_id
string
amount
string
currency
string
status
enum<string>
default:UNKNOWN
Available options:
UNKNOWN,
PENDING,
DONE