REST candle symbols accept both bare asset symbols like BTC and feed names like BTC/USD. WebSocket Chainlink subscriptions use feed names such as BTC/USD.
Historical 1-second ticks for the same crypto feeds available on the price_feed WebSocket stream. Use this to backfill a chart window before switching to live WebSocket updates.Range: up to 24 hours per request
Parameter
Required
Description
symbol
Yes
Asset symbol: BTC, ETH, SOL, BNB, XRP, DOGE, HYPE
from
Yes
Start of range as Unix milliseconds
to
Yes
End of range as Unix milliseconds
limit
No
Max ticks to return. Default 10000, max 100000
source
No
Optional source filter: chainlink_data_streams or polymarket_chainlink
If truncated is true, request a narrower range or increase limit. BTC/USD can include more than one source for the same second; use the source parameter or deduplicate by timestamp_ms if your chart needs exactly one point per second.
The openPrice is the oracle price at market open. closePrice updates in real time until the window completes. completed: true means the market has resolved.
{ "markets": [ { "id": "312746", "slug": "btc-updown-5m-1774674300", "title": "Bitcoin Up or Down - March 28, 1:05AM-1:10AM ET", "active": true, "closed": false, "startDate": "2026-03-27T05:16:04.211285Z", "endDate": "2026-03-28T05:10:00Z", "markets": [ { "question": "Bitcoin Up or Down - March 28, 1:05AM-1:10AM ET", "conditionId": "0x...", "outcomes": "[\"Up\", \"Down\"]", "outcomePrices": [0.465, 0.535], "tokenId": "12345...", "active": true, "closed": false } ] } ], "count": 7, "windowStart": 1774674300}
The windowStart field is the epoch timestamp of the current 5-minute window. New markets rotate every 5 minutes.
Slug pattern is deterministic: {coin}-updown-5m-{windowStart}. You can compute the current window yourself with Math.floor(Date.now() / 1000 / 300) * 300. The SDK’s shortForm() method handles this automatically with auto-rotation, enriched market data, and settlement streaming. See Short-Form Markets for the interactive slug calculator and full reference.