Docs / API reference

GET /v1/fundamentals/{ticker}

Normalized income statement, balance sheet and cash flow from EDGAR XBRL.

Parameters

ParamInValues
tickerpathUS stock ticker, e.g. AAPL
periodqueryannual (default) or quarterly
limitquery1–20 periods (default 5)

Request

curl "https://api.edgrapi.com/v1/fundamentals/AAPL?period=annual&limit=4" -H "X-API-Key: edgr_..."

Response

{
  "ticker": "AAPL", "company": "Apple Inc.", "period": "annual", "currency": "USD",
  "income_statement": [
    { "period": "2025", "revenue": 416161000000,
      "net_income": 112010000000, "eps_diluted": 7.46 }
  ],
  "balance_sheet": [ "..." ], "cash_flow": [ "..." ],
  "source": "SEC EDGAR companyfacts"
}