Overview
Earnings Report works by aggregating and normalizing SEC EDGAR financial filings (10-Q and 10-K) for US public companies into one combined view. The data includes revenue, net income, EPS, assets, liabilities, cash flow and margins. Use this endpoint when you want the full picture in one request; use the dedicated Income Statement, Balance Sheet, Cash Flow or Financial Ratios APIs when you only need one statement. Data is refreshed continuously from official SEC filings.
Endpoint
One host, one path per API. The block below shows this call in four languages; every one of them is the same HTTP request. Making requests covers the timeouts, retries and parameter rules that apply to all of them. The SDKs wrap the same call in a typed client.
curl "https://api.apiverve.com/v1/earnings?ticker=ADBE" \
-H "x-api-key: your_api_key_here"const res = await fetch('https://api.apiverve.com/v1/earnings?ticker=ADBE', {
headers: { 'x-api-key': 'your_api_key_here' },
});
if (!res.ok) throw new Error(`${res.status} ${await res.text()}`);
const { data } = await res.json();
console.log(data);import requests
res = requests.get(
"https://api.apiverve.com/v1/earnings?ticker=ADBE",
headers={"x-api-key": "your_api_key_here"},
timeout=15,
)
res.raise_for_status()
print(res.json()["data"])package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/earnings?ticker=ADBE", nil)
req.Header.Set("x-api-key", "your_api_key_here")
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
out, _ := io.ReadAll(res.Body)
fmt.Println(string(out))
}Replace your_api_key_here with the key from your dashboard. When the inputs arrive as a list rather than one at a time, batch requests run up to 200 of them through this same API in a single call.
Authentication
Send your key in the x-api-key header. That is the only auth step — there is no token exchange and no per-endpoint scope to configure. Authentication covers creating, rotating and revoking keys.
A 401 means the key is missing, invalid or expired. A 403 means the key is valid but not permitted here — blocked by a key restriction or an IP allow-list. Running out of credits is a 429.
Parameters
Sent in the query string. Premium parameters are accepted on every plan but only take effect on plans that include them.
| Parameter | Type | Description |
|---|---|---|
tickerRequired | string | Stock ticker symbol (e.g. AAPL, MSFT, ADBE) length 1–5 |
yearOptionalPremium | integer | Fiscal year to retrieve. Defaults to latest available. range 2000–2030 |
quarterOptionalPremium | integer | Fiscal quarter to retrieve. Defaults to latest available. range 1–4 |
Response
Every API returns the same three top-level keys, so one response handler covers your whole integration: status, error and data. Only data changes shape. Response format covers the envelope, the other output formats and how premium fields are withheld.
{
"status": "ok",
"error": null,
"data": {
"ticker": "ADBE",
"company": "ADOBE INC.",
"cik": "0000796343",
"fiscalYear": 2025,
"fiscalQuarter": 2,
"filingType": "10-Q",
"filingDate": "2025-06-25",
"periodEnd": "2025-05-30",
"income": {
"revenue": 11587000000,
"costOfRevenue": 1260000000,
"grossProfit": 10327000000,
"operatingIncome": 4272000000,
"netIncome": 3502000000,
"eps": 8.08,
"epsBasic": 8.1,
"sharesOutstanding": 433000000,
"sharesOutstandingBasic": 432000000,
"researchAndDevelopment": 2108000000,
"sellingAndMarketing": 3121000000,
"sellingGeneralAndAdmin": null,
"generalAndAdmin": 744000000,
"interestExpense": 68000000,
"incomeTax": 781000000,
"depreciation": 82000000,
"stockBasedCompensation": null
},
"balance": {
"totalAssets": 28107000000,
"currentAssets": 8978000000,
"cash": 4931000000,
"receivables": 1735000000,
"inventory": null,
"propertyAndEquipment": 1890000000,
"goodwill": 12830000000,
"intangibles": 631000000,
"totalLiabilities": 16659000000,
"currentLiabilities": 9039000000,
"accountsPayable": 360000000,
"longTermDebt": 6166000000,
"equity": 11448000000,
"retainedEarnings": 41744000000
},
"cashFlow": {
"operatingCashFlow": 4673000000,
"capitalExpenditures": 73000000,
"freeCashFlow": 4600000000,
"investingCashFlow": -762000000,
"financingCashFlow": -6629000000,
"dividendsPaid": null,
"shareRepurchases": 6750000000
},
"metrics": {
"grossMargin": 89.12,
"operatingMargin": 36.87,
"netMargin": 30.22,
"revenueFormatted": "$11.59B"
},
"lastUpdated": "2026-02-05T08:00:00.000Z"
}
}Response fields
Paths are relative to data. Premium fields are absent rather than zeroed on plans that do not include them, so check for presence instead of comparing to 0.
| Field | Type | Example | Description |
|---|---|---|---|
ticker | string | "ADBE" | Stock ticker symbol for the company |
company | string | "ADOBE INC." | Official registered name of the company |
cik | string | "0000796343" | SEC Central Index Key unique identifier |
fiscalYear | number | 2025 | Fiscal year of the reporting period |
fiscalQuarter | number | 2 | Fiscal quarter number (1-4) |
filingTypePremium | string | "10-Q" | SEC filing type (10-Q, 10-K, etc.) |
filingDate | string | "2025-06-25" | Date when SEC filing was submitted |
periodEnd | string | "2025-05-30" | End date of the reporting period |
income | object | {...} | Income statement figures for the period |
revenuePremium | number | 11587000000 | Total revenue in dollars (derived total) |
costOfRevenue | number | 1260000000 | Direct costs of producing goods sold |
grossProfit | number | 10327000000 | Gross profit calculated from revenue |
operatingIncome | number | 4272000000 | Income from normal business operations |
netIncomePremium | number | 3502000000 | Bottom-line profit after all expenses |
epsPremium | number | 8.08 | Earnings per share (diluted) |
epsBasic | number | 8.1 | Basic earnings per share calculation |
sharesOutstandingPremium | number | 433000000 | Diluted shares outstanding (in millions) |
sharesOutstandingBasic | number | 432000000 | Basic shares outstanding (in millions) |
researchAndDevelopment | number | 2108000000 | Research and development expenses |
sellingAndMarketing | number | 3121000000 | Sales and marketing operational expenses |
sellingGeneralAndAdmin | object | null | Selling, general administrative expenses |
generalAndAdmin | number | 744000000 | General and administrative expenses |
interestExpense | number | 68000000 | Interest expense on debt obligations |
incomeTax | number | 781000000 | Income tax expense for the period |
depreciation | number | 82000000 | Depreciation of fixed assets |
stockBasedCompensation | object | null | Stock-based employee compensation expense |
balance | object | {...} | Balance sheet figures for the period |
totalAssetsPremium | number | 28107000000 | All assets owned by the company |
currentAssets | number | 8978000000 | Assets convertible to cash within year |
cash | number | 4931000000 | Cash and cash equivalents balance |
receivables | number | 1735000000 | Amounts customers owe the company |
inventory | object | null | Unsold goods available for sale |
propertyAndEquipment | number | 1890000000 | Fixed assets and equipment value |
goodwillPremium | number | 12830000000 | Intangible value from acquisitions |
intangibles | number | 631000000 | Intangible assets like patents |
totalLiabilitiesPremium | number | 16659000000 | All obligations owed by company |
currentLiabilities | number | 9039000000 | Liabilities due within twelve months |
accountsPayable | number | 360000000 | Amounts company owes to suppliers |
longTermDebtPremium | number | 6166000000 | Debt obligations due after one year |
equity | number | 11448000000 | Shareholders equity total value |
retainedEarnings | number | 41744000000 | Cumulative profits retained in business |
cashFlow | object | {...} | Cash flow statement figures for the period |
operatingCashFlowPremium | number | 4673000000 | Cash generated from operations |
capitalExpenditures | number | 73000000 | Spending on long-term assets purchase |
freeCashFlowPremium | number | 4600000000 | Cash available after capital expenses |
investingCashFlow | number | -762000000 | Cash flow from investment activities |
financingCashFlow | number | -6629000000 | Cash flow from financing activities |
dividendsPaid | object | null | Dividends paid to shareholders |
shareRepurchases | number | 6750000000 | Cash spent buying back company shares |
metrics | object | {...} | Margins and ratios derived from the statements |
grossMarginPremium | number | 89.12 | Gross profit margin percentage |
operatingMarginPremium | number | 36.87 | Operating income margin percentage |
netMarginPremium | number | 30.22 | Net income margin percentage |
revenueFormattedPremium | string | "$11.59B" | Revenue formatted with suffix (M/B) |
lastUpdated | string | "2026-02-05T08:00:00.000Z" | ISO timestamp of data last update |
Errors
Read the HTTP status first, then error for the specific reason. The body names the parameter that has to change. Error handling covers the full status list and which of them are worth retrying.
| Status | Meaning | What to do |
|---|---|---|
400 | Input was rejected | Read error; it names the parameter. |
401 | Key missing or invalid | Check the header name and the key value. |
403 | Key valid, but not permitted | A key restriction or IP allow-list; see key scoping. |
429 | Rate limited, or out of credits | Read error to tell them apart; see rate limits. |
Other ways to use Earnings Report
Set up Earnings Report on APIVerve, or reach the same source a different way. Your APIVerve account and credits work on all of them — one key, one balance.
Related
More in Finance: