Earnings API
The Earnings API provides comprehensive earnings report data for any public company listed in the United States, including financial statements, balance sheets, cash flow statements, and key financial metrics. All data is sourced from official SEC filings (10-Q, 10-K).
/v1/earnings GET
https://api.api-ninjas.com/v1/earnings
Returns detailed earnings report data for a specific company, quarter, and year. This includes comprehensive financial statements and key performance metrics. You can identify the company using either a ticker symbol or CIK (Central Index Key).
Parameters
If you do not specify a year or quarter, the API will return the most recent earnings data.
tickeroptionalCompany ticker symbol (e.g.,
ADBE). Eithertickerorcikmust be provided.cikoptionalCompany Central Index Key (e.g.,
796343). Eithertickerorcikmust be provided.quarteroptionalFiscal quarter from Q1 to Q4. Must be one of the following values:
1,2,3,4. If set,yearmust also be set.yearoptionalFiscal year. E.g.
2025. Must be a valid year between 2000 and the current year. For historical earnings data before 2025, you must have a premium subscription. If set,quartermust also be set.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
tickerThe company ticker symbol.
quarterThe fiscal quarter (1-4).
yearThe fiscal year.
company_infoCompany filing information including CIK, company name, filing type, filing date, and period end date.
income_statementKey income statement figures including revenue, gross profit, operating income, net income, earnings per share, and expense breakdowns.
balance_sheetBalance sheet data including total assets, liabilities, equity, cash, debt, and other key balance sheet items.
cash_flowCash flow statement data including operating, investing, and financing cash flows, plus capital expenditures and share repurchases.
filing_infoSEC filing metadata including filing type, filing date, and period end date.
Sample Request Live Demo!
https://api.api-ninjas.com/v1/earnings?ticker=ADBE&year=2025&quarter=2Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"company_info": {
"ticker": "ADBE",
"cik": "796343",
"fiscal_year": 2025,
"company_name": "ADOBE INC.",
"fiscal_quarter": 2
},
"income_statement": {
"earnings_per_share_basic": 8.1,
"interest_expense": 68000000,
"sales_and_marketing": 3121000000,
"operating_income": 4272000000,
"tax_provision": 781000000,
"gross_profit": 10327000000,
"earnings_per_share_diluted": 8.08,
"weighted_average_shares_basic": 432000000,
"general_and_administrative": 744000000,
"cost_of_revenue": 1260000000,
"stock_based_compensation": null,
"total_revenue": 11587000000,
"net_income": 3502000000,
"research_and_development": 2108000000,
"depreciation_and_amortization": 82000000,
"weighted_average_shares_diluted": 433000000
},
"balance_sheet": {
"goodwill": 12830000000,
"retained_earnings": 41744000000,
"total_assets": 28107000000,
"current_liabilities": 9039000000,
"total_debt": null,
"total_liabilities": 16659000000,
"long_term_debt": 6166000000,
"accounts_receivable": 1735000000,
"inventory": null,
"current_assets": 8978000000,
"property_plant_equipment": 1890000000,
"intangible_assets": 631000000,
"working_capital": null,
"accounts_payable": 360000000,
"stockholders_equity": 11448000000,
"cash_and_equivalents": 4931000000
},
"cash_flow": {
"share_repurchases": 6750000000,
"operating_cash_flow": 4673000000,
"net_cash_investing": -762000000,
"net_cash_financing": -6629000000,
"free_cash_flow": 4590000000,
"capital_expenditures": 73000000,
"dividends_paid": null
},
"filing_info": {
"filing_type": "10-Q",
"filing_date": "2025-06-25",
"period_end_date": "2025-05-30"
}
}Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/earnings?ticker=ADBE&year=2025&quarter=2" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.