# Fundamentals Snapshot

`GET /v1/fundamentals/{ticker}`

One-call snapshot: latest key metrics + a live quote.

The fastest way to get a company’s headline numbers in a single request: latest revenue, EBITDA, margins, valuation multiples (EV/EBITDA), net debt, and free cash flow, alongside a live price quote. Backed by a precomputed metrics cache.

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

## Request

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

## Response

`200 OK` · `application/json`

| Attribute | Type | Description |
| --- | --- | --- |
| `data.ticker` | string | The requested ticker. |
| `data.period_end` | string | Period end of the latest metrics (YYYY-MM-DD). |
| `data.metrics.revenue` | number | Revenue (TTM), USD millions. |
| `data.metrics.ebitda` | number | EBITDA (TTM), USD millions. |
| `data.metrics.ebitdaMargin` | number | EBITDA margin (decimal). |
| `data.metrics.evToEbitda` | number | Enterprise value / EBITDA. |
| `data.metrics.netDebt` | number | Net debt (negative = net cash). |
| `data.metrics.ufcf` | number | Unlevered free cash flow. |
| `data.quote` | object | Live price quote (same shape as /v1/quote). |

## Example response

```json
{
  "data": {
    "ticker": "AAPL",
    "period_end": "2026-03-31",
    "metrics": {
      "revenue": 408625,
      "netIncome": 102330,
      "ebitda": 138420,
      "ebitdaMargin": 0.3387,
      "enterpriseValue": 4180000,
      "evToEbitda": 30.2,
      "netDebt": -38000,
      "ufcf": 109800
    },
    "quote": {
      "ticker": "AAPL",
      "price": 283.78,
      "changePercent": 0.0314,
      "asOf": "2026-06-26"
    }
  },
  "meta": {
    "ticker": "AAPL",
    "source": "SEC XBRL + market data",
    "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).
