New API users should migrate to deposit wallets. Read the migration guide.
curl --request POST \
--url https://clob.polymarket.com/books \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'[
{
"market": "0x1234567890123456789012345678901234567890",
"asset_id": "0xabc123def456...",
"timestamp": "1234567890",
"hash": "a1b2c3d4e5f6...",
"bids": [
{
"price": "0.45",
"size": "100"
}
],
"asks": [
{
"price": "0.46",
"size": "150"
}
],
"min_order_size": "1",
"tick_size": "0.01",
"neg_risk": false,
"last_trade_price": "0.45"
}
]Retrieves order book summaries for multiple token IDs using a request body.
curl --request POST \
--url https://clob.polymarket.com/books \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'[
{
"market": "0x1234567890123456789012345678901234567890",
"asset_id": "0xabc123def456...",
"timestamp": "1234567890",
"hash": "a1b2c3d4e5f6...",
"bids": [
{
"price": "0.45",
"size": "100"
}
],
"asks": [
{
"price": "0.46",
"size": "150"
}
],
"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.
Successfully retrieved order books
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?