# Latest Quote

`GET /v1/quote/{ticker}`

Latest price snapshot and 52-week range for a 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.

Authentication: `Authorization: Bearer <API key>`. As-reported SEC fundamentals, quotes, valuation and screener.

## Path parameters

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `ticker` | string | yes | — | US-listed ticker symbol (1–12 characters, case-insensitive). |

## Query parameters

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `series` | string (1) | no | — | Set to "1" to include ~1 year of daily close history in `series`. |

## Request

```bash
curl "https://app.akyla.ai/v1/quote/AAPL" \
  -H "Authorization: Bearer $AKYLA_API_KEY"
```

## Response

`200 OK` · `application/json`

| Attribute | Type | Description |
| --- | --- | --- |
| `data.ticker` | string | The requested ticker. |
| `data.name` | string | Company name. |
| `data.exchange` | string | Listing exchange (MIC). |
| `data.price` | number | Latest close price. |
| `data.change` | number | Absolute change vs. previous close. |
| `data.changePercent` | number | Change as a decimal (0.012 = +1.2%). |
| `data.dayLow / dayHigh` | number | Intraday low / high. |
| `data.fiftyTwoWeekLow / fiftyTwoWeekHigh` | number | Trailing 52-week range. |
| `data.volume` | number | Latest session volume. |
| `data.asOf` | string | ISO date of the latest candle. |
| `meta` | object | Source, API version, and generation timestamp. |

## Example response

```json
{
  "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"
  }
}
```

Part of the Financial Data API — full reference: https://app.akyla.ai/docs (Markdown: https://app.akyla.ai/docs.md).
