curl --request POST \
--url https://clob.polymarket.com/spreads \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'{
"0xabc123def456...": "0.02",
"0xdef456abc123...": "0.015"
}Retrieves spreads for multiple token IDs. The spread is the difference between the best ask and best bid prices.
curl --request POST \
--url https://clob.polymarket.com/spreads \
--header 'Content-Type: application/json' \
--data '
[
{
"token_id": "0xabc123def456..."
},
{
"token_id": "0xdef456abc123..."
}
]
'{
"0xabc123def456...": "0.02",
"0xdef456abc123...": "0.015"
}Was this page helpful?