Price

Historical Prices

Free Starter Stock ETF Pro

Historical OHLCV bars for one symbol at one resolution, returned as compact [ts_ms, adjClose] tuples for efficient charting. The latest bar's full OHLCV detail is also included.

Resolutions: 1d (default), 1wk, 1mo.

History depth per plan: Free = last 2 years, Starter = last 5 years, Stock / ETF / Pro = 20 years.

Delisted listings are not served. A ticker identifies an instrument only while its listing is active; once delisted the symbol may be reassigned to another registrant, so a selector resolving to a delisted listing returns 400 rather than another company's prices.

get/api/price/history

Query parameters

symbolstring

Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.

cikinteger

SEC Central Index Key (CIK).

cusipstring

CUSIP identifier (9 characters).

composite_figistring

Composite OpenFIGI identifier.

share_class_figistring

Share-class OpenFIGI identifier.

resolution'1d' | '1wk' | '1mo'

Bar resolution. Default 1d.

fromstring date

Inclusive lower bound (YYYY-MM-DD). Omit to return all available history.

tostring date

Inclusive upper bound (YYYY-MM-DD). Omit to return data up to now.

Response

Historical bars + latest quote detail.

tickerstring
resolutionstring

Example response

{
  "ticker": "AAPL",
  "resolution": "1d",
  "data": [
    [
      1704153600000,
      185.64
    ],
    [
      1704240000000,
      184.25
    ]
  ]
}