POST
/
prices
Get multiple market prices by request
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"
  }
]'
{
"1234567890": {
"BUY": "1800.50",
"SELL": "1801.00"
},
"0987654321": {
"BUY": "50.25",
"SELL": "50.30"
}
}

Body

application/json · object[]

The body is of type object[].

Response

200
application/json

Successful response

Map of token_id to side to price