Skip to main content
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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

The stock ticker symbol (e.g. AAPL, MSFT).

interval
enum<string>
required

The time interval for the price data.

Available options:
day,
week,
month,
year
start_date
string<date>
required

The start date for the price data (format: YYYY-MM-DD).

end_date
string<date>
required

The end date for the price data (format: YYYY-MM-DD).

Response

Price data response

prices
object[]
next_page_url
string

The URL to the next page of results.