GET
/
api
/
v3
/
brokerage
/
market
/
product_book
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/market/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>"
}

Query Parameters

product_id
string
required

The trading pair (e.g. 'BTC-USD').

limit
integer

The number of bid/asks to be returned.

aggregation_price_increment
string

The minimum price intervals at which buy and sell orders are grouped or combined in the order book.

Response

200
application/json

A successful response.

The response is of type object.