Coinbase Exchange API
cURL
curl --request GET \ --url https://api.exchange.coinbase.com/coinbase-accounts \ --header 'cb-access-key: <api-key>' \ --header 'cb-access-passphrase: <api-key>' \ --header 'cb-access-sign: <api-key>' \ --header 'cb-access-timestamp: <api-key>'
[ { "available_on_consumer": true, "hold_balance": "0.00", "id": "OXT", "hold_currency": "USD", "balance": "0.00000000", "currency": "OXT", "primary": false, "name": "OXT Wallet", "type": "wallet", "active": true } ]
Gets all the user’s available Coinbase wallets (These are the wallets/accounts that are used for buying and selling on www.coinbase.com)
The response is of type object[].
object[]
Was this page helpful?