---
title: "EOD Data"
method: GET
path: "/eod"
tags: ["End-of-day"]
---

# EOD Data

`GET /eod`

You can use the API's `eod` endpoint in order to obtain end-of-day data for one or multiple stock tickers. A single or multiple comma-separated ticker symbols are passed to the API using the `symbols` parameter.


**Note:**

* *The EOD data has access to over 500,000 tickers from more major world-known exchanges. The full list of supported tickers and exchanges can be seen here:* [**Download**](https://marketstack.com/download/v2_eod_tickers_finnworlds_tiingo.xlsx)

* *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)

* *The V2 EOD endpoint supports data from **30+ stock exchanges**, including **NASDAQ,** **PINK, SHG, NYSE, NYSE ARCA, OTCQB,** and **BATS***

* *To retrieve end-of-day data for individual tickers, you can also use the Tickers Endpoint.*

* ***Ticker Symbol Formatting:** When querying ticker symbols that include a period (.), replace the period with a hyphen (-) in the intraday endpoint. **Example:BRK.B → BRK-B***

**Adjusted Prices:**
“**Adjusted**” prices represent stock values that have been modified to accurately reflect the impact of corporate actions such as splits and dividends. These adjustments are applied following the CRSP Calculations methodology established by the **Center for Research in Security Prices (CRSP).**

## Query parameters

- `access_key` string, required
- `symbols` string, required
- `exchange` string
- `date_from` string, date
- `date_to` string, date
- `sort` 'ASC' | 'DESC'
- `limit` integer
- `offset` integer

## Response `200`

EOD data retrieved.

- EODResponse
  - `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` EODBar[]
    - `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)
