cURL
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 one book.
market
tokens
GET /<clob-endpoint>/book
print( client.get_order_book( "71321045679252212594626385532706912750332728571942532289631379312455583992563" ) )
Token ID of the market to get the book for.
A successful response containing the order book summary.
The response is of type object.
object