---
title: "Historical Price Bars"
method: GET
path: "/api/v2/bars"
tags: ["Market Data"]
---

# Historical Price Bars

`GET /api/v2/bars`

Retrieves historical OHLCV (Open, High, Low, Close, Volume) price bar data for specified securities. Returns aggregated price data based on the specified interval. Supports multiple ticker symbols and various time ranges including relative dates.

## Query parameters

- `symbols` string, required
- `from` string, required
- `to` string
- `interval` string
- `session` string

## Response `200`

Array of chart data with OHLCV bars for each symbol

- ApiHttpapiChart[]
  - `candles` object[]
    - `close` number
    - `dateTime` string
    - `high` number
    - `low` number
    - `open` number
    - `time` string
    - `volume` string
  - `interval` integer
  - `symbol` string

## Other responses

- `400` — Bad request - missing or invalid required parameters
- `500` — Internal server error

---

[API](https://skmtc.dev/benzinga/apis/data-api-proxy.md) · [All operations](https://skmtc.dev/benzinga/apis/data-api-proxy/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/benzinga/data-api-proxy/revisions/ea334a9e2e05/schema)
