GET
/
prices-history
Get price history for a traded token
curl --request GET \
  --url https://clob.polymarket.com/prices-history
{
  "history": [
    {
      "t": 1697875200,
      "p": 1800.75
    }
  ]
}

Query Parameters

market
string
required

The CLOB token ID for which to fetch price history

startTs
number

The start time, a Unix timestamp in UTC

endTs
number

The end time, a Unix timestamp in UTC

interval
enum<string>

A string representing a duration ending at the current time. Mutually exclusive with startTs and endTs

Available options:
1m,
1w,
1d,
6h,
1h,
max
fidelity
number

The resolution of the data, in minutes

Response

200
application/json

A list of timestamp/price pairs

The response is of type object.