---
title: "Historical Prices"
method: GET
path: "/api/price/history"
tags: ["Price"]
---

# Historical Prices

`GET /api/price/history`

![Free](https://img.shields.io/badge/Free-22c55e) ![Starter](https://img.shields.io/badge/Starter-3b82f6) ![Stock](https://img.shields.io/badge/Stock-f97316) ![ETF](https://img.shields.io/badge/ETF-14b8a6) ![Pro](https://img.shields.io/badge/Pro-8b5cf6)

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.

## Query parameters

- `symbol` string
- `cik` integer
- `cusip` string
- `composite_figi` string
- `share_class_figi` string
- `resolution` '1d' | '1wk' | '1mo'
- `from` string, date
- `to` string, date

## Response `200`

Historical bars + latest quote detail.

- object
  - `ticker` string
  - `resolution` string
  - `data` array[] — Array of `[ts_ms, adjClose]` tuples sorted ascending by ts. Direct-pluggable into Highcharts/Recharts/TradingView lightweight charts.
    - number[]
  - `latestQuote` object, nullable — Full OHLCV for the most recent bar. Null if no data is available.
    - `ts` string, date-time
    - `open` number, nullable
    - `high` number, nullable
    - `low` number, nullable
    - `close` number
    - `adjClose` number, nullable
    - `volume` number

## Other responses

- `400` — Invalid parameters or unknown symbol.
- `403` — Feature not available on current plan.

---

[API](https://skmtc.net/stockfit/apis/stockfit-api.md) · [All operations](https://skmtc.net/stockfit/apis/stockfit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stockfit/stockfit-api/revisions/3d5897270d8a/schema)
