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