GET/companies/{identifier}/financials

Get parsed financial data including income statement, balance sheet, and cash flow

$0.01 per request

Parameters

NameTypeRequiredDescription
identifierstringYesStock ticker or CIK number
period_typestringNoFilter by period type: 'annual' or 'quarterly'

Request

curl "https://api.redcent.io/companies/AAPL/financials?period_type=annual" \
  -H "X-PAYMENT: <payment-token>"

Response

{
  "company": {
    "cik": "0000320193",
    "ticker": "AAPL",
    "name": "Apple Inc."
  },
  "financials": [
    {
      "periodType": "annual",
      "fiscalYear": 2023,
      "periodEnd": "2023-09-30",
      "incomeStatement": {
        "revenue": 383285000000,
        "costOfRevenue": 214137000000,
        "grossProfit": 169148000000,
        "operatingIncome": 114301000000,
        "netIncome": 96995000000,
        "eps": { "basic": 6.16, "diluted": 6.13 }
      },
      "balanceSheet": {
        "totalAssets": 352583000000,
        "totalLiabilities": 290437000000,
        "totalEquity": 62146000000,
        "cash": 29965000000
      },
      "cashFlow": {
        "operatingCashFlow": 110543000000,
        "investingCashFlow": -7077000000,
        "financingCashFlow": -108488000000,
        "freeCashFlow": 99584000000
      }
    }
  ],
  "source": "sec-live"
}