Endpoint
https://api.llmquant.com/financials/balance-sheets
Parameters
Required
The stock ticker symbol (e.g. AAPL, MSFT).
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).
Response
Array of BalanceSheet objects.
The end date of the reporting period (YYYY-MM-DD).
The fiscal period label (e.g. Q1, FY).
One of: annual, quarterly, ttm.
Reporting currency (e.g. USD).
Cash and cash equivalents.
Accounts receivable, net.
property_plant_and_equipment
Property, plant and equipment, net.
Short-term debt and current portion of long-term debt.
total_current_liabilities
Total current liabilities.
Common stock and additional paid-in capital.
total_shareholders_equity
Total shareholders’ equity.
total_liabilities_and_equity
Total liabilities and shareholders’ equity.
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/balance-sheets"
f"?ticker={ticker}"
f"&period={period}"
f"&limit={limit}"
)
response = requests.get(url, headers=headers)
balance_sheets = response.json().get("balance_sheets")