---
title: "fetch OHLC for minute timeframe"
method: POST
path: "/charts/intraday"
tags: ["Data API's"]
---

# fetch OHLC for minute timeframe

`POST /charts/intraday`

Retrieve OHLC & Volume of minute candle for desired instrument for current day. This data available for all segments including futures & options.

## Headers

- `access-token` string, required

## Request body

- IntradayChartsRequest
  - `securityId` string — Exchange standard identification for each scrip
  - `exchangeSegment` 'NSE_EQ' | 'NSE_FNO' | 'BSE_EQ' | 'BSE_FNO' | 'MCX_COMM' | 'IDX_I' — | **Enums** | **Exchange** | **Segment** | |--------------|--------------|-------------------| | NSE_EQ | NSE | Equity Cash | | NSE_FNO | NSE | Futures & Options | | BSE_EQ | BSE | Equity Cash | | BSE_FNO | BSE | Futures & Options | | MCX_COMM | MCX | Commodity | | IDX_I | INDEX | Indices |
  - `instrument` 'INDEX' | 'FUTIDX' | 'OPTIDX' | 'EQUITY' | 'FUTSTK' | 'OPTSTK' | 'FUTCOM' | 'OPTFUT' — Represents the security instrument type, refer charts annexure for possible values.
  - `interval` '1' | '5' | '15' | '25' | '60' — Represents time interval in minute, refer charts annexure for possible values.
  - `oi` boolean — Open Interest Data
  - `fromDate` string — date format : yyyy-MM-dd
  - `toDate` string — date format : yyyy-MM-dd

## Response `200`

Successful operation

- ChartsResponse
  - `open` number[] — Array of values representing OHLC open value
  - `high` number[] — Array of values representing OHLC high value
  - `low` number[] — Array of values representing OHLC low value
  - `close` number[] — Array of values representing OHLC close value
  - `volume` number[] — Array of values representing volume
  - `timestamp` number[] — Array of values representing date times in seconds since January 01, 1980
  - `open_interest` number[] — Array of values representing open interest

---

[API](https://skmtc.dev/dhan/apis/dhanhq-api.md) · [All operations](https://skmtc.dev/dhan/apis/dhanhq-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/dhan/dhanhq-api/revisions/2d368b9ed32d/schema)
