Retrieve the latest stock price
Return the latest available daily-price resource for one security. This route doesn't accept date, sorting, or pagination parameters.
/v3.0.0/stock-prices/latest/{identifier}Plan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
Plan History
Free
(Your plan)
2 years
Individual
$29/mo
5 years
Professional
$89/mo
All available
curl "https://api.roic.ai/v3.0.0/stock-prices/latest/NASDAQ:AAPL?apikey=YOUR_API_KEY"{
"symbol": "NASDAQ:AAPL",
"date": "2026-07-17",
"open": 210.61,
"high": 213.34,
"low": 209.85,
"close": 212.41,
"volume": 48923700,
"currency": "USD"
}Parameters
Path parameters
identifierstringrequiredA ticker ID, an exchange and symbol separated by a colon (e.g. NASDAQ:AAPL), or a FIGI.
NASDAQ:AAPLtkr_cO46h8pgSu9QqyBBG000B9XRY4Response
Response fields
symbolstringQualified symbol combining the exchange code and ticker separated by a colon, e.g. NASDAQ:AAPL.
datestringThe trading day the prices refer to, in YYYY-MM-DD format.
opennumberPrice of the first trade of the regular session, in currency units. Unadjusted unless you pass adjustment.
highnumberHighest price traded during the session. Unadjusted unless you pass adjustment.
lownumberLowest price traded during the session. Unadjusted unless you pass adjustment.
closenumberPrice of the last trade of the regular session. Unadjusted unless you pass adjustment.
volumenumberTotal number of shares traded during the session.
currencystringISO 4217 code of the currency the prices are quoted in, e.g. USD. Matches the ticker's trading currency.
Data timing
The resource is the latest daily record available to the API, not an intraday
tick. While the current trading day is still open, its values can still change.
Inspect date rather than assuming the response is a live streaming quote.
Related endpoints
Use historical prices when you need multiple trading dates.