curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/accounts/{account_uuid} \
--header 'Authorization: Bearer <token>'{
"account": {
"uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"name": "BTC Wallet",
"currency": "BTC",
"available_balance": {
"value": "1.23",
"currency": "BTC"
},
"default": false,
"active": true,
"created_at": "2021-05-31T09:59:59.000Z",
"updated_at": "2021-05-31T09:59:59.000Z",
"deleted_at": "2021-05-31T09:59:59.000Z",
"type": "FIAT",
"ready": true,
"hold": {
"value": "1.23",
"currency": "BTC"
},
"retail_portfolio_id": "b87a2d3f-8a1e-49b3-a4ea-402d8c389aca",
"platform": "ACCOUNT_PLATFORM_CONSUMER"
}
}Get a list of information about an account, given an account UUID.
curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/accounts/{account_uuid} \
--header 'Authorization: Bearer <token>'{
"account": {
"uuid": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"name": "BTC Wallet",
"currency": "BTC",
"available_balance": {
"value": "1.23",
"currency": "BTC"
},
"default": false,
"active": true,
"created_at": "2021-05-31T09:59:59.000Z",
"updated_at": "2021-05-31T09:59:59.000Z",
"deleted_at": "2021-05-31T09:59:59.000Z",
"type": "FIAT",
"ready": true,
"hold": {
"value": "1.23",
"currency": "BTC"
},
"retail_portfolio_id": "b87a2d3f-8a1e-49b3-a4ea-402d8c389aca",
"platform": "ACCOUNT_PLATFORM_CONSUMER"
}
}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.
The account's UUID.
A successful response.
Show child attributes
Unique identifier for account.
"8bfc20d7-f7c6-4422-bf07-8243ca4169fe"
Name for the account.
"BTC Wallet"
Currency symbol for the account.
"BTC"
Whether or not this account is the user's primary account
false
Whether or not this account is active and okay to use.
true
Time at which this account was created.
"2021-05-31T09:59:59.000Z"
Time at which this account was updated.
"2021-05-31T09:59:59.000Z"
Time at which this account was deleted.
"2021-05-31T09:59:59.000Z"
What type the account is.
ACCOUNT_TYPE_UNSPECIFIED, ACCOUNT_TYPE_CRYPTO, ACCOUNT_TYPE_FIAT, ACCOUNT_TYPE_VAULT, ACCOUNT_TYPE_PERP_FUTURES "FIAT"
Whether or not this account is ready to trade.
true
The ID of the portfolio this account is associated with.
"b87a2d3f-8a1e-49b3-a4ea-402d8c389aca"
Platform indicates if the account is for spot (CONSUMER), US Derivatives (CFM_CONSUMER), or International Exchange (INTX).
ACCOUNT_PLATFORM_UNSPECIFIED, ACCOUNT_PLATFORM_CONSUMER, ACCOUNT_PLATFORM_CFM_CONSUMER, ACCOUNT_PLATFORM_INTX "ACCOUNT_PLATFORM_CONSUMER"
Was this page helpful?