API Key
Get a key

Company Metrics

Get XBRL-extracted financial facts and metrics from SEC filings.

GET /api/v1/companies/{cik_or_ticker}/metrics Cost: 200 credits

Parameters

ParameterTypeRequiredDescription
cik_or_tickerstringRequiredCompany CIK or ticker symbol
metric_namestringOptionalFilter by metric name (e.g. Revenue, NetIncome)
limitintegerOptional (20)Max results (max 100)

Code examples

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.beefi.ai/api/v1/companies/AAPL/metrics?metric_name=Revenue"

Try it

GET /companies/{cik_or_ticker}/metrics

Response

[
  {
    "taxonomy": "us-gaap",
    "tag": "Revenue",
    "label": "Revenue from Contract with Customer",
    "value": 383285000000,
    "unit": "USD",
    "period_start": "2022-09-25",
    "period_end": "2023-09-30",
    "fiscal_year": 2023,
    "fiscal_period": "FY",
    "form_type": "10-K"
  }
]