GET
/
api
/
v3
/
brokerage
/
key_permissions
Get API Key Permissions
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/key_permissions \
  --header 'Authorization: Bearer <token>'
{
  "can_view": true,
  "can_trade": true,
  "can_transfer": true,
  "portfolio_uuid": "<string>",
  "portfolio_type": "UNDEFINED"
}

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.

Response

A successful response.

can_view
boolean

Indicates whether the API key has view permissions.

can_trade
boolean

Indicates whether the API key has trade permissions.

can_transfer
boolean

Indicates whether the API key has deposit/withdrawal permissions.

portfolio_uuid
string

The portfolio ID associated with the API key.

portfolio_type
enum<string>
default:UNDEFINED

The type of portfolio PortfolioType defines the type of Portfolio.

Available options:
UNDEFINED,
DEFAULT,
CONSUMER,
INTX