API Key
Get a key

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 credits

Parameters

ParameterTypeRequiredDescription
cik_or_tickerstringRequiredCompany CIK or ticker symbol
statement_typestringOptionalFilter by type: income, balance, cash_flow
limitintegerOptional (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}/financials

Response

[
  {
    "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
    }
  }
]