Company Metrics
Get XBRL-extracted financial facts and metrics from SEC filings.
GET
/api/v1/companies/{cik_or_ticker}/metrics Cost: 200 creditsParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| cik_or_ticker | string | Required | Company CIK or ticker symbol |
| metric_name | string | Optional | Filter by metric name (e.g. Revenue, NetIncome) |
| limit | integer | Optional (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}/metricsResponse
[
{
"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"
}
]