AkylaAKYLA
OverviewDocsDevelopersGet API key

API Reference

Quotes

Fundamentals

Statements

Valuation

Screener

REST · Quotes

Latest Quote

GET/v1/quote/{ticker}

Returns the most recent daily close, intraday range, 52-week high/low, and volume for a US-listed equity. Pass series=1 to also receive roughly one year of daily closes for charting.

Path Parameters

tickerstringrequired

US-listed ticker symbol (1–12 characters, case-insensitive).

Query Parameters

seriesstring

Set to "1" to include ~1 year of daily close history in `series`.

Response Attributes

AttributeTypeDescription
data.tickerstringThe requested ticker.
data.namestringCompany name.
data.exchangestringListing exchange (MIC).
data.pricenumberLatest close price.
data.changenumberAbsolute change vs. previous close.
data.changePercentnumberChange as a decimal (0.012 = +1.2%).
data.dayLow / dayHighnumberIntraday low / high.
data.fiftyTwoWeekLow / fiftyTwoWeekHighnumberTrailing 52-week range.
data.volumenumberLatest session volume.
data.asOfstringISO date of the latest candle.
metaobjectSource, API version, and generation timestamp.

Try it

No key? Create one →

Request

GET/v1/quote/AAPL

cURL

curl "https://financials.akyla.ai/v1/quote/AAPL" \
  -H "Authorization: Bearer YOUR_API_KEY"

Sample response

{
  "data": {
    "ticker": "AAPL",
    "name": "Apple Inc.",
    "exchange": "XNAS",
    "currency": "usd",
    "price": 283.78,
    "previousClose": 275.15,
    "change": 8.63,
    "changePercent": 0.0314,
    "dayLow": 274.21,
    "dayHigh": 285.95,
    "fiftyTwoWeekLow": 199.26,
    "fiftyTwoWeekHigh": 317.4,
    "volume": 235596141,
    "avgVolume": 57512692,
    "asOf": "2026-06-26"
  },
  "meta": {
    "ticker": "AAPL",
    "source": "Market data (daily close)",
    "api_version": "v1",
    "generated_at": "2026-06-27T15:24:00.000Z"
  }
}