Skip to main content
GET
/
book
Get Single Book
curl --request GET \
  --url https://clob.polymarket.com/book
{
  "market": "<string>",
  "asset_id": "<string>",
  "hash": "<string>",
  "timestamp": "<string>",
  "min_order_size": "<string>",
  "neg_risk": true,
  "tick_size": "<string>",
  "bids": [
    {
      "price": "<string>",
      "size": "<string>"
    }
  ],
  "asks": [
    {
      "price": "<string>",
      "size": "<string>"
    }
  ]
}

Get Single Book

Get a order book summary for a token. Remember a market is a pair of tokens. HTTP REQUEST GET /<clob-endpoint>/book
print(
    client.get_order_book(
        "71321045679252212594626385532706912750332728571942532289631379312455583992563"
    )
)

Query Parameters

token_id
string
required

Token ID of the market to get the book for.

Response

200 - application/json

A successful response containing the order book summary.

market
string

Condition ID.

asset_id
string

ID of the asset/token.

hash
string

Hash summary of the orderbook content.

timestamp
string

Unix timestamp of the book generation in milliseconds (1/1,000 second).

min_order_size
string

Minimum allowed order size.

neg_risk
boolean

Boolean indicating whether the market is neg_risk.

tick_size
string

Current tick size for this market.

bids
object[]

List of bid levels.

asks
object[]

List of ask levels.

I