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
}
}Successfully retrieved market prices
Map of token ID to map of side to price
Show child attributes
Was this page helpful?