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.

GET/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

Request
curl "https://api.roic.ai/v3.0.0/stock-prices/latest/NASDAQ:AAPL?apikey=YOUR_API_KEY"
Response
200 OK
{
  "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

identifierstringrequired

A ticker ID, an exchange and symbol separated by a colon (e.g. NASDAQ:AAPL), or a FIGI.

Examples: NASDAQ:AAPLtkr_cO46h8pgSu9QqyBBG000B9XRY4

Response

Response fields

symbolstring

Qualified symbol combining the exchange code and ticker separated by a colon, e.g. NASDAQ:AAPL.

datestring

The trading day the prices refer to, in YYYY-MM-DD format.

opennumber

Price of the first trade of the regular session, in currency units. Unadjusted unless you pass adjustment.

highnumber

Highest price traded during the session. Unadjusted unless you pass adjustment.

lownumber

Lowest price traded during the session. Unadjusted unless you pass adjustment.

closenumber

Price of the last trade of the regular session. Unadjusted unless you pass adjustment.

volumenumber

Total number of shares traded during the session.

currencystring

ISO 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.

Use historical prices when you need multiple trading dates.