{ "opencollection": "1.0.0", "info": { "name": "Coinbase Advanced Trade Accounts API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "CB-ACCESS-KEY", "value": "{{CB-ACCESS-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "List accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.coinbase.com/api/v3/brokerage/accounts", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "cursor", "value": "", "type": "query", "description": "Cursor for pagination" } ] }, "docs": "Retrieves a list of authenticated accounts for the current user. Returns account details including available balance, hold amount, and currency information." }, { "info": { "name": "Get account", "type": "http" }, "http": { "method": "GET", "url": "https://api.coinbase.com/api/v3/brokerage/accounts/:account_id", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "Unique identifier for the account" } ] }, "docs": "Retrieves a single account by account ID including the available balance, hold amount, and currency information." }, { "info": { "name": "Get account ledger", "type": "http" }, "http": { "method": "GET", "url": "https://api.coinbase.com/api/v3/brokerage/accounts/:account_id/ledger", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "Account identifier" }, { "name": "before", "value": "", "type": "query", "description": "Cursor for pagination (newer items)" }, { "name": "after", "value": "", "type": "query", "description": "Cursor for pagination (older items)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per request (max 100)" } ] }, "docs": "Retrieves the ledger (transaction history) for a specific account. Returns a paginated list of account activity entries." }, { "info": { "name": "Get account holds", "type": "http" }, "http": { "method": "GET", "url": "https://api.coinbase.com/api/v3/brokerage/accounts/:account_id/holds", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "Account identifier" }, { "name": "before", "value": "", "type": "query", "description": "Cursor for pagination (newer items)" }, { "name": "after", "value": "", "type": "query", "description": "Cursor for pagination (older items)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per request (max 100)" } ] }, "docs": "Retrieves holds on an account that are associated with active orders or pending withdraw requests. Holds make funds unavailable for trading." }, { "info": { "name": "Get account transfers", "type": "http" }, "http": { "method": "GET", "url": "https://api.coinbase.com/api/v3/brokerage/accounts/:account_id/transfers", "params": [ { "name": "account_id", "value": "", "type": "path", "description": "Account identifier" }, { "name": "before", "value": "", "type": "query", "description": "Cursor for pagination (newer items)" }, { "name": "after", "value": "", "type": "query", "description": "Cursor for pagination (older items)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per request (max 100)" } ] }, "docs": "Retrieves a list of in-progress and completed transfers of funds to or from the account." } ] } ], "bundled": true }