---
title: "Stock Candles"
method: GET
path: "/stock/candle"
tags: ["Default"]
---

# Stock Candles

`GET /stock/candle`

Get candlestick data (OHLCV) for stocks.

Daily data will be adjusted for Splits. Intraday data will remain unadjusted. Only 1 month of intraday will be returned at a time. If you need more historical intraday data, please use the from and to params iteratively to request more data.

## Query parameters

- `symbol` string, required
- `resolution` string, required
- `from` integer, required
- `to` integer, required

## Response `200`

successful operation

- StockCandles
  - `o` number[] — List of open prices for returned candles.
  - `h` number[] — List of high prices for returned candles.
  - `l` number[] — List of low prices for returned candles.
  - `c` number[] — List of close prices for returned candles.
  - `v` number[] — List of volume data for returned candles.
  - `t` integer[] — List of timestamp for returned candles.
  - `s` string — Status of the response. This field can either be ok or no_data.

---

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