GET
/
book
curl --request GET \
  --url https://clob.polymarket.com/book
{
  "market": "<string>",
  "asset_id": "<string>",
  "hash": "<string>",
  "timestamp": "<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.

The response is of type object.