Retrieve time-series price data for a specific market outcome token. Useful for charting, backtesting, and trend analysis.
Query Parameters
CLOB token ID (Polymarket token address). This is the unique identifier for the outcome token you want price history for.
Start timestamp in Unix seconds. Omit to use the server default (beginning of available data).
End timestamp in Unix seconds. Omit to use the current time.
Time aggregation interval. One of: max, all, 1m, 1w, 1d, 6h, 1h.
Data fidelity in minutes. Higher values produce coarser data with fewer points. Default is 1 (one-minute granularity).
venue
string
default:"polymarket"
Trading venue identifier. Default: polymarket.
Response
Array of price data points.
Unix timestamp in seconds.
Price at this point in time (0-1 range for prediction markets).
Authorization
string
header
default:YOUR_API_KEY
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
CLOB token ID (Polymarket token address)
Start timestamp (Unix seconds)
End timestamp (Unix seconds)
Time aggregation interval
Available options:
max,
all,
1m,
1w,
1d,
6h,
1h
Data fidelity in minutes (default 1)
Required range: x >= 1
Trading venue (default: polymarket)
Maximum string length: 50