cURL
curl --request POST \ --url https://clob.polymarket.com/last-trades-prices \ --header 'Content-Type: application/json' \ --data ' [ { "token_id": "0xabc123def456..." }, { "token_id": "0xdef456abc123..." } ] '
200
Example
[ { "token_id": "0xabc123def456...", "price": "0.45", "side": "BUY" }, { "token_id": "0xdef456abc123...", "price": "0.52", "side": "SELL" } ]
Retrieves last trade prices for multiple token IDs using a request body. Maximum 500 token IDs can be requested per call.
Token ID (asset ID)
"0xabc123def456..."
Order side (optional, not used for midpoint calculation)
BUY
SELL
"BUY"
Successfully retrieved last trade prices
Last trade price
"0.45"
Last trade side (BUY or SELL)
Was this page helpful?