Returns end-of-day stock prices for Securities on the Stock Exchange with `identifier` and on the `price_date` (or the latest date that prices are available)
Name | Description | Example |
---|---|---|
identifier
* required
|
A Stock Exchange identifier (MIC or Intrinio ID) | USCOMP |
date
|
The date for which to return prices. May not be used with the start_date and end_date parameters. | - |
start_date
|
The start of the date range you're querying. May not be used with date parameter. | - |
end_date
|
The end of the date range you're querying. May not be used with date parameter. | - |
page_size
|
The number of results to return | - |
next_page
|
Gets the next page of data from a previous API call | - |
tickers
|
The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. | AAPL,MSFT,NVDA |
next_page
|
Gets the next page of data from a previous API call | - |
identifier
* required
A Stock Exchange identifier (MIC or Intrinio ID)
|
||
date
* required
The date for which to return prices. May not be used with the start_date and end_date parameters.
|
||
start_date
* required
The start of the date range you're querying. May not be used with date parameter.
|
||
end_date
* required
The end of the date range you're querying. May not be used with date parameter.
|
||
page_size
* required
The number of results to return
|
||
next_page
* required
Gets the next page of data from a previous API call
|
||
tickers
* required
The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned.
|
||
next_page
* required
Gets the next page of data from a previous API call
|
Name | Description | Type |
---|---|---|
stock_prices | The stock prices for all Securities traded on the Stock Exchange on the given date | array |
date
|
The calendar date that the stock price represents. For non-daily stock prices, this represents the last day in the period (end of the week, month, quarter, year, etc) | date |
intraperiod
|
If true, the stock price represents an unfinished period (be it day, week, quarter, month, or year), meaning that the close price is the latest price available, not the official close price for the period | boolean |
frequency
|
The type of period that the stock price represents | select |
open
|
The price at the beginning of the period | number |
high
|
The highest price over the span of the period | number |
low
|
The lowest price over the span of the period | number |
close
|
The price at the end of the period | number |
volume
|
The number of shares exchanged during the period | number |
adj_open
|
The price at the beginning of the period, adjusted for splits and dividends | number |
adj_high
|
The highest price over the span of the period, adjusted for splits and dividends | number |
adj_low
|
The lowest price over the span of the period, adjusted for splits and dividends | number |
adj_close
|
The price at the end of the period, adjusted for splits and dividends | number |
adj_volume
|
The number of shares exchanged during the period, adjusted for splits and dividends | number |
factor
|
The factor by which to multiply stock prices before this date, in order to calculate historically-adjusted stock prices. | number |
split_ratio
|
The ratio of the stock split, if a stock split occurred. | number |
dividend
|
The dividend amount, if a dividend was paid. | number |
change
|
The difference in price from the last price for this frequency | number |
percent_change
|
The percent difference in price from the last price for this frequency | number |
fifty_two_week_high
|
The 52 week high price (daily only) | number |
fifty_two_week_low
|
The 52 week low price (daily only) | number |
security
|
The Security of the stock price | object |
id
|
The Intrinio ID for Security | string |
company_id
|
The Intrinio ID for the Company for which the Security is issued | string |
name
|
The name of the Security | string |
code
|
A 2-3 digit code classifying the Security (reference) | string |
currency
|
The currency in which the Security is traded on the exchange | string |
ticker
|
The common/local ticker of the Security | string |
composite_ticker
|
The country-composite ticker of the Security | string |
figi
|
The OpenFIGI identifier | string |
composite_figi
|
The country-composite OpenFIGI identifier | string |
share_class_figi
|
The global-composite OpenFIGI identifier | string |
primary_listing
|
If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange | boolean |
stock_exchange | The Stock Exchange resolved from the given identifier | object |
id
|
The Intrinio ID for the Stock Exchange | string |
name
|
The name of the exchange | string |
mic
|
The Market Identifier Code (MIC) of the exchange | string |
acronym
|
The acronym of the exchange's name | string |
city
|
The city in which the exchange is located | string |
country
|
The country in which the exchange is located | string |
country_code
|
The 2-digit code of the exchange's country | string |
website
|
The website of the exchange | string |
first_stock_price_date
|
The earliest date for which Intrinio has stock prices for the exchange | date |
last_stock_price_date
|
The latest date for which Intrinio has stock prices for the exchange | date |
next_page | The token required to request the next page of the data. If null, no further results are available. | string |
stock_prices
The stock prices for all Securities traded on the Stock Exchange on the given date
|
||
stock_exchange
The Stock Exchange resolved from the given identifier
|
||
next_page
The token required to request the next page of the data. If null, no further results are available.
|