New API users should migrate to deposit wallets. Read the migration guide.
curl --request POST \
--url https://clob.polymarket.com/last-trades-prices \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'[
{
"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.
curl --request POST \
--url https://clob.polymarket.com/last-trades-prices \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'[
{
"token_id": "0xabc123def456...",
"price": "0.45",
"side": "BUY"
},
{
"token_id": "0xdef456abc123...",
"price": "0.52",
"side": "SELL"
}
]Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?