GET
/
prices-history
curl --request GET \
  --url https://clob.polymarket.com/prices-history
{
  "history": [
    {
      "t": 123,
      "p": 123
    }
  ]
}

The CLOB provides detailed price history for each traded token.

HTTP REQUEST

GET /<clob-endpoint>/prices-history

We also have a Interactive Notebook to visualize the data from this endpoint available here.

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.