What every number for one asset was on a past day
historyRetrieve daily per-asset data—price, premium, liquidity, supply, holders, and trading flags—for a chosen UTC day or range. Specify fields to narrow the returned snapshot.
Instructions
A daily snapshot per asset: multiplier, pause and trading-halt flags, Chainlink price and staleness, bid and ask, divergence, DEX price, premium and liquidity, total supply, holders and the lookalike count, one row per UTC day. Use at=YYYY-MM-DD to answer 'what was TSLA's premium on that day'; from/to or days set a window (default the last 90). fields narrows each row. coverage says how many days are on record: history begins the day the daily snapshot first ran and there is nothing before it, and a null is a figure that was not read that day rather than a zero. Each row is a single reading taken at takenAt, not a daily open, close or average: the job runs hourly and rewrites the current day's row, so today's row is a partial day. Compare takenAt across rows before treating the series as evenly spaced. Prices are USD numbers; dexPremiumPct is a percent, how far the deepest pool in dollars of any DEX read sat above (+) or below (-) the Chainlink feed price that day (the pools tool names that pool's venue; dexLiquidity is Uniswap's raw L, comparable only between pools of the same pair); totalSupplyRaw is a string in the token's own decimals (the response carries decimals); day is a UTC day and takenAt the ISO instant the reading was taken. The Chainlink price already includes the ERC-8056 multiplier, the bid and ask do not.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| at | No | One UTC day, YYYY-MM-DD | |
| to | No | Last UTC day, YYYY-MM-DD | |
| days | No | ||
| from | No | First UTC day, YYYY-MM-DD | |
| fields | No | Comma-separated keys, e.g. feedPrice,dexPremiumPct | |
| symbol | Yes | Ticker, e.g. TSLA |