cURL
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" } ] '
200
Example
{ "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.
Token ID (asset ID)
"0xabc123def456..."
Order side (optional, not used for midpoint calculation)
BUY
SELL
"BUY"
Successfully retrieved market prices
Map of token ID to map of side to price
Show child attributes
Was this page helpful?