Financial Statements
Get income statements, balance sheets, and cash flow statements from SEC filings.
GET
/api/v1/companies/{cik_or_ticker}/financials Cost: 1,000 creditsParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| cik_or_ticker | string | Required | Company CIK or ticker symbol |
| statement_type | string | Optional | Filter by type: income, balance, cash_flow |
| limit | integer | Optional (10) | Max results (max 50) |
Code examples
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.beefi.ai/api/v1/companies/MSFT/financials?statement_type=income&limit=4"Try it
GET
/companies/{cik_or_ticker}/financialsResponse
[
{
"filing_accession": "0001564590-24-001234",
"statement_type": "income",
"period_end": "2023-12-31",
"fiscal_year": 2023,
"fiscal_period": "FY",
"data": {
"Revenue": 211915000000,
"CostOfRevenue": 65863000000,
"GrossProfit": 146052000000,
"OperatingIncome": 88523000000,
"NetIncome": 72361000000
}
}
]