GET
/
api
/
v3
/
brokerage
/
best_bid_ask
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/best_bid_ask
{
  "pricebooks": [
    {
      "product_id": "BTC-USD",
      "bids": [
        {
          "price": "<string>",
          "size": "<string>"
        }
      ],
      "asks": [
        {
          "price": "<string>",
          "size": "<string>"
        }
      ],
      "time": "<string>"
    }
  ]
}

Query Parameters

product_ids
string[]

The list of trading pairs (e.g. 'BTC-USD').

Response

200
application/json

A successful response.

The response is of type object.