Get historical stock price data
Market Data
Historical Prices
Historical OHLCV bars for one stock over an explicit date range.
GET
Get historical stock price data
Historical OHLCV bars for one stock. All four of
ticker, interval, start_date and end_date are required — there is no trailing-window shortcut. interval is one of day, week, month or year. Each bar carries open, close, high, low, volume and time, wrapped in a prices array alongside the echoed ticker. Use it to chart or to measure a move across a known window. For just the latest price use get_financial_prices_snapshot.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
The stock ticker symbol (e.g. AAPL, MSFT).
The time interval for the price data.
Available options:
day, week, month, year The start date for the price data (format: YYYY-MM-DD).
The end date for the price data (format: YYYY-MM-DD).