Endpoint
https://api.llmquant.com/financials/income-statements
Parameters
Required
The stock ticker symbol (e.g. AAPL, NVDA).
The reporting period. One of: annual, quarterly, ttm.
Optional
Maximum number of statements to return.
The SEC Central Index Key (CIK) of the company. Alternative to ticker.
Filter by exact reporting period date (YYYY-MM-DD).
Filter by reporting period greater than or equal to date (YYYY-MM-DD).
Filter by reporting period less than or equal to date (YYYY-MM-DD).
Filter by reporting period strictly greater than date (YYYY-MM-DD).
Filter by reporting period strictly less than date (YYYY-MM-DD).
Response
Array of IncomeStatement objects.
The end date of the reporting period (YYYY-MM-DD).
The fiscal period label (e.g. Q1, Q2, FY).
One of: annual, quarterly, ttm.
Reporting currency (e.g. USD).
SEC accession number of the underlying filing.
Gross profit (revenue - cost_of_revenue).
Total operating expenses.
selling_general_and_administrative_expenses
Selling, general and administrative expenses (SG&A).
Research and development expenses.
Operating income (EBIT before non-operating items).
Earnings before interest and taxes.
net_income_discontinued_operations
Net income from discontinued operations.
net_income_non_controlling_interests
Net income attributable to non-controlling interests.
Net income available to common stockholders.
preferred_dividends_impact
Impact of preferred dividends on net income to common.
Basic earnings per share (EPS).
earnings_per_share_diluted
Diluted earnings per share.
dividends_per_common_share
Dividends per common share.
Weighted average basic shares outstanding.
weighted_average_shares_diluted
Weighted average diluted shares outstanding.
Code Examples
import requests
headers = {"X-API-KEY": "your_api_key_here"}
ticker = "AAPL"
period = "annual"
limit = 10
url = (
f"https://api.llmquant.com/financials/income-statements"
f"?ticker={ticker}"
f"&period={period}"
f"&limit={limit}"
)
response = requests.get(url, headers=headers)
income_statements = response.json().get("income_statements")
Available Tickers
GET https://api.llmquant.com/financials/income-statements/tickers/