---
title: "Intraday Data"
method: GET
path: "/intraday"
tags: ["Intraday"]
---

# Intraday Data

`GET /intraday`

In additional to daily end-of-day stock prices, the Marketstack API also supports intraday data with data intervals as short as one minute. Intraday prices are available for all US stock tickers included in the IEX (Investors Exchange) stock exchange.

To access intraday market data, use the API’s Intraday Endpoint and specify your desired stock ticker symbols.

**Notes:**

* *A daily updated list of all tickers accessible via Marketstack is available for download:[**Download Ticker List**](https://marketstack.com/download/supported_tickers_2.csv)*

* *You can also request intraday data for **individual ticker symbols** using the **Tickers Endpoint.***

* ***Ticker Symbol Formatting:** When querying ticker symbols that include a period (.), replace the period with a hyphen (-) when using the Intraday Endpoint. **Example:** BRK.B → BRK-B*

**IMPORTANT NOTE:** In the case of Intraday, Marketstack provides derived data that calculates a real-time reference price for each asset. While this is not a substitute for the TOPS Feed, we believe it will fulfill the needs of 95% of our customer base.

We’re doing so because as of **February 1st, 2025**, the IEX Exchange has changed its market data policies. To receive the FULL TOPS Feed, you must now have a market data agreement signed with the IEX Exchange. This means that the parameters bidPrice, bidSize, askPrice, askSize, lastPrice, lastSize, mid, and last will all return NULL in the API response for intraday since **IEX entitlement is required** for them. If you still need to have access to TOPS Feed, please contact our customer support team before signing any contract with them.

For using our derived data, there is no need to have a market data agreement signed with the IEX exchange, and there is no additional cost to the IEX Exchange.`

## Query parameters

- `access_key` string, required
- `symbols` string, required
- `interval` '1min' | '5min' | '10min' | '15min' | '30min' | '1hour'
- `exchange` string
- `date_from` string, date
- `date_to` string, date
- `sort` 'ASC' | 'DESC'
- `limit` integer
- `offset` integer
- `after_hours` boolean

## Response `200`

Intraday data retrieved.

- IntradayResponse
  - `pagination` Pagination
    - `limit` integer — Returns your pagination limit value.
    - `offset` integer — Returns your pagination offset value.
    - `count` integer — Returns the results count on the current page.
    - `total` integer — Returns the total count of results available.
  - `data` IntradayBar[]
    - `open` number, float — Opening price for the trading session.
    - `high` number, float — Highest price of the session.
    - `low` number, float — Lowest price of the session.
    - `close` number, float — Closing price of the session.
    - `volume` number, float — Traded volume during the session.
    - `adj_high` number, float — High price adjusted for corporate actions.
    - `adj_low` number, float — Low price adjusted for corporate actions.
    - `adj_close` number, float — Close price adjusted for corporate actions.
    - `adj_open` number, float — Open price adjusted for corporate actions.
    - `adj_volume` number, float — Volume adjusted for corporate actions.
    - `split_factor` number, float — Cumulative stock split factor applied for the date.
    - `dividend` number, float — Dividend amount per share for the date.
    - `name` string — Company name.
    - `exchange_code` string — Human-friendly exchange code (for example NASDAQ).
    - `asset_type` string — Asset class
    - `price_currency` string — Price currency (ISO code in lower case).
    - `symbol` string — Ticker symbol.
    - `exchange` string — MIC of the exchange.
    - `date` string — Timestamp of the bar in ISO8601 with timezone.

---

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