POST
/
withdrawals
/
coinbase-account
curl --request POST \
  --url https://api.exchange.coinbase.com/withdrawals/coinbase-account \
  --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 '{
  "coinbase_account_id": "<string>",
  "amount": "<string>",
  "currency": "<string>"
}'
{
  "id": "<string>",
  "amount": "<string>",
  "currency": "<string>"
}

Withdraw funds to a Coinbase account

You can move funds between your Coinbase accounts and your Coinbase Exchange trading accounts within your daily limits. Moving funds between Coinbase and Coinbase Exchange is instant and free. See the Coinbase Accounts section for retrieving your Coinbase accounts.

API Key Permissions

This endpoint requires the “transfer” permission.

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.