Coinbase Advanced Trade API
cURL
curl --request GET \ --url https://api.coinbase.com/api/v3/brokerage/product_book
{ "pricebook": { "product_id": "BTC-USD", "bids": [ { "price": "<string>", "size": "<string>" } ], "asks": [ { "price": "<string>", "size": "<string>" } ], "time": "<string>" }, "last": "<string>", "mid_market": "<string>", "spread_bps": "<string>", "spread_absolute": "<string>" }
Get a list of bids/asks for a single product. The amount of detail shown can be customized with the limit parameter.
Show child attributes
Was this page helpful?