New API users should migrate to deposit wallets. Read the migration guide.
curl --request POST \
--url https://clob.polymarket.com/prices \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456...",
"side": "BUY"
},
{
"token_id": "0xdef456abc123...",
"side": "SELL"
}
]
'{
"0xabc123def456...": {
"BUY": 0.45
},
"0xdef456abc123...": {
"SELL": 0.52
}
}Retrieves market prices for multiple token IDs and sides using a request body. Each request must include both token_id and side.
curl --request POST \
--url https://clob.polymarket.com/prices \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456...",
"side": "BUY"
},
{
"token_id": "0xdef456abc123...",
"side": "SELL"
}
]
'{
"0xabc123def456...": {
"BUY": 0.45
},
"0xdef456abc123...": {
"SELL": 0.52
}
}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 market prices
Map of token ID to map of side to price
Show child attributes
Was this page helpful?