New API users should migrate to deposit wallets. Read the migration guide.
curl --request GET \
--url https://clob.polymarket.com/book{
"market": "0x1234567890123456789012345678901234567890",
"asset_id": "0xabc123def456...",
"timestamp": "1234567890",
"hash": "a1b2c3d4e5f6...",
"bids": [
{
"price": "0.45",
"size": "100"
},
{
"price": "0.44",
"size": "200"
}
],
"asks": [
{
"price": "0.46",
"size": "150"
},
{
"price": "0.47",
"size": "250"
}
],
"min_order_size": "1",
"tick_size": "0.01",
"neg_risk": false,
"last_trade_price": "0.45"
}Retrieves the order book summary for a specific token ID. Includes bids, asks, market details, and last trade price.
curl --request GET \
--url https://clob.polymarket.com/book{
"market": "0x1234567890123456789012345678901234567890",
"asset_id": "0xabc123def456...",
"timestamp": "1234567890",
"hash": "a1b2c3d4e5f6...",
"bids": [
{
"price": "0.45",
"size": "100"
},
{
"price": "0.44",
"size": "200"
}
],
"asks": [
{
"price": "0.46",
"size": "150"
},
{
"price": "0.47",
"size": "250"
}
],
"min_order_size": "1",
"tick_size": "0.01",
"neg_risk": false,
"last_trade_price": "0.45"
}Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt
Use this file to discover all available pages before exploring further.
Token ID (asset ID)
Successfully retrieved order book
Market condition ID
"0x1234567890123456789012345678901234567890"
Token ID (asset ID)
"0xabc123def456..."
Timestamp of the order book snapshot
"1234567890"
Hash of the order book summary
"a1b2c3d4e5f6..."
List of bid orders (sorted by price descending)
Show child attributes
List of ask orders (sorted by price ascending)
Show child attributes
Minimum order size
"1"
Minimum price increment (tick size)
"0.01"
Whether negative risk is enabled for this market
false
Last trade price
"0.45"
Was this page helpful?