cURL
curl --request POST \ --url https://clob.polymarket.com/prices \ --header 'Content-Type: application/json' \ --data '[ { "token_id": "1234567890", "side": "BUY" }, { "token_id": "0987654321", "side": "SELL" } ]'
200
example
{ "1234567890": { "BUY": "1800.50", "SELL": "1801.00" }, "0987654321": { "BUY": "50.25", "SELL": "50.30" }}
Retrieves market prices for specified tokens and sides via POST request
The unique identifier for the token
"1234567890"
The side of the market (BUY or SELL)
BUY
SELL
"BUY"
Successful response
Map of token_id to side to price
Show child attributes