v3
latestOpenAPI 3.1.02026-07-26490368.4 KBGet the stock prices for a company
Returns the daily stock price series for the specified company, including open price, close price, and volume, in reverse chronological order (most recent first). Prices are quoted in the listing's trading currency and adjusted using the company's split history (the primary listing's corporate actions); listing-specific actions such as ADR ratio changes are not yet applied to secondary series. When the request denotes a secondary listing, that listing's own price series is returned; if it is unavailable, the primary listing's prices are returned as a fallback. Unlike /v2, the response identifies the exact listing the prices belong to (listingFiscalIdentifier, ticker, exchangeCode, tradingCurrency, tradingStatus), so callers always know whether they received the primary or a secondary listing.
Query parameters
API Key (alternatively send via X-Api-Key header)
API Key (alternatively send via X-Api-Key header)
Company ticker, use with mic or alone for US tickers
Company ticker, use with mic or alone for US tickers
Company MIC, use with ticker
Company MIC, use with ticker
Company exchange code, use with ticker
Company exchange code, use with ticker
Company key (alternative to ticker/micCode/exchange)
Company key (alternative to ticker/micCode/exchange)
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN
FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.
FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.
Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.
Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.
Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.
Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.
Filter prices from this date onwards (YYYY-MM-DD format)
Filter prices up to and including this date (YYYY-MM-DD format)
If true, returns only the most recent stock price
If true, returns only the most recent stock price
Response
Stock prices, with the identity of the listing they belong to
Example response
{
"listingFiscalIdentifier": "FSCLL8TBZ3EGU251",
"ticker": "MSFT",
"exchangeCode": "NASDAQ",
"operatingMic": "XNAS",
"segmentMic": "XNGS",
"tradingCurrency": "USD",
"tradingStatus": "active",
"prices": [
{
"date": "2025-07-10",
"openPrice": 193.12,
"closePrice": 195.38,
"volume": 5432100
}
]
}