---
title: "Price history"
method: GET
path: "/api/v2/quotes/{symbol}/historical"
tags: ["Finance"]
---

# Price history

`GET /api/v2/quotes/{symbol}/historical`

OHLCV historical data. Use period OR start/end, not both. Supports intraday intervals (1m, 5m, 15m, 1h) and daily+.

## Path parameters

- `symbol` string, required — Security ticker symbol.

## Query parameters

- `period` string, nullable — Lookback window: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max. Alias of `range`.
- `range` string, nullable — Alias of `period`, the spelling used by /api/v2/market/chart and the indicators family.
- `start` string, nullable — YYYY-MM-DD
- `end` string, nullable — YYYY-MM-DD
- `interval` string — 1m, 2m, 5m, 15m, 30m, 60m, 90m, 1h, 1d, 5d, 1wk, 1mo, 3mo. A long window is downsampled upstream; the response reports the granularity actually served.
- `extended_hours` boolean — Include pre/post-market bars (intraday intervals only; ignored on 1d+).
- `limit` integer, nullable — Return only the most recent N bars. Applied after the window is fetched, so it does not change what is cached.

## Response `200`

OHLCV historical bars for the symbol at the requested interval and period or date range.

- EnvelopeHistoricalResponseV2
  - `data` HistoricalResponseV2, required
    - `symbol` string, required — Security ticker symbol.
    - `interval` string, required — Reporting interval.
    - `currency` string, nullable — Currency code (ISO 4217).
    - `exchange` string, nullable — Exchange code.
    - `timezone` string — Timezone identifier (IANA).
    - `data` OHLCVRowV2[] — Primary payload.
      - `date` string, required — Observation date (YYYY-MM-DD).
      - `open` number, nullable — Period opening price.
      - `high` number, nullable — Period high value.
      - `low` number, nullable — Period low value.
      - `close` number, nullable — Period closing price.
      - `volume` integer, nullable — Trading or transaction volume.
      - `adj_close` number, nullable — Adjusted closing price (splits and dividends).
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/4e2740743eb4/schema)
