v3

latestOpenAPI 3.1.02026-07-26490368.4 KB
Deprecated

[DEPRECATED] Get the stock prices for a company (use /v3/company/stock-prices instead)

Returns the daily stock price series for the specified company, including open price, close price, and volume. Prices are split-adjusted, expressed in the company reporting currency where applicable, and returned in reverse chronological order (most recent first). Secondary listings return their own price series; if unavailable, the primary listing's prices are returned as a fallback — but the response does not indicate which listing was returned. This endpoint is deprecated, please use /v3/company/stock-prices instead, which identifies the exact listing the prices belong to.

get/v2/company/stock-prices

Query parameters

apiKeystring

API Key (alternatively send via X-Api-Key header)

API Key (alternatively send via X-Api-Key header)

tickerstring

Company ticker, use with mic or alone for US tickers

Example:MSFT

Company ticker, use with mic or alone for US tickers

micCodestring

Company MIC, use with ticker

Example:XNAS

Company MIC, use with ticker

exchangestring

Company exchange code, use with ticker

Example:NASDAQ

Company exchange code, use with ticker

companyKeystring

Company key (alternative to ticker/micCode/exchange)

Example:NASDAQ_MSFT

Company key (alternative to ticker/micCode/exchange)

cusipstring

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP

Example:594918104

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP

isinstring

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN

Example:US5949181045

Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN

figistring

FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.

Example:BBG000BPH459

FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.

cikstring

Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.

Example:789019

Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.

fsclstring

Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.

Example:FSCLC6CGT4DXS597

Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.

startDatestring

Filter prices from this date onwards (YYYY-MM-DD format)

Example:2024-01-01
endDatestring

Filter prices up to and including this date (YYYY-MM-DD format)

Example:2024-12-31
latestboolean

If true, returns only the most recent stock price

If true, returns only the most recent stock price

Response

Stock prices

datestring required
open_pricenumber nullable required
close_pricenumber required
volumenumber required

Example response

[
  {
    "date": "2025-07-10",
    "open_price": 193.12,
    "close_price": 195.38,
    "volume": 5432100
  }
]