v1

latestOpenAPI 3.0.1MIT2026-07-263267128.2 KB
KPIs

Get KPI metrics

Get sector-specific operational KPIs for a ticker. Includes metrics like load factor, CET1 ratio, same-store sales, FFO per share, and more. Sourced from SEC 8-K earnings releases.

get/kpi/metrics

Query parameters

tickerstring required

The ticker symbol.

metric_namestring

Filter to a specific metric (e.g., load_factor, cet1_ratio).

period'quarterly' | 'annual'

Filter by period type: quarterly or annual.

report_period_gtestring date

Only return metrics on or after this date (YYYY-MM-DD).

report_period_ltestring date

Only return metrics on or before this date (YYYY-MM-DD).

limitinteger

Number of periods to return. Returns all metrics for the N most recent periods.

Response

KPI metrics response

Example response

{
  "kpi_metrics": [
    {
      "ticker": "DAL",
      "metric_name": "load_factor",
      "value": 82,
      "unit": "%",
      "period": "Q4 2025",
      "period_type": "quarterly",
      "segment": "Commercial Engines & Services",
      "yoy_value": 84,
      "yoy_change_pct": -2.381,
      "source_text": "Passenger load factor",
      "source_url": "https://www.sec.gov/Archives/edgar/data/27904/000002790426000008/deltaairlinesannouncesdece.htm"
    }
  ]
}