Skip to main content
GET
/
v1
/
orderbook
/
{symbol}
/
bbo
Get best bid/offer
curl --request GET \
  --url https://api.polymarketexchange.com/v1/orderbook/{symbol}/bbo
{
  "symbol": "<string>",
  "bestBid": {
    "px": "<string>",
    "qty": "<string>"
  },
  "bestOffer": {
    "px": "<string>",
    "qty": "<string>"
  },
  "spread": "<string>",
  "midPrice": "<string>",
  "state": "INSTRUMENT_STATE_OPEN",
  "transactTime": "2023-11-07T05:31:56Z"
}

Path Parameters

symbol
string
required

Instrument symbol (e.g., "BTC-USD")

Response

200 - application/json

A successful response.

Response containing the best bid and offer.

symbol
string
bestBid
Best bid (highest buy price) · object

BookEntry lists a price and volume for a market data record.

bestOffer
Best offer (lowest sell price) · object

BookEntry lists a price and volume for a market data record.

spread
string<int64>
midPrice
string<int64>
state
enum<string>

InstrumentState represents the state of an instrument.

Available options:
INSTRUMENT_STATE_OPEN,
INSTRUMENT_STATE_PREOPEN,
INSTRUMENT_STATE_SUSPENDED,
INSTRUMENT_STATE_EXPIRED,
INSTRUMENT_STATE_TERMINATED,
INSTRUMENT_STATE_HALTED,
INSTRUMENT_STATE_MATCH_AND_CLOSE_AUCTION
transactTime
string<date-time>