POST
/
api
/
v3
/
brokerage
/
cfm
/
sweeps
/
schedule
Schedule Futures Sweep
curl --request POST \
  --url https://api.coinbase.com/api/v3/brokerage/cfm/sweeps/schedule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "usd_amount": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Creating API Keys section of our Coinbase App Authentication docs for information on how to generate your Bearer Token.

Body

application/json
usd_amount
string

The amount of USD to be swept. By default, sweeps all available excess funds.

Response

A successful response.

success
boolean