Financial Report
Fetch income statement, balance sheet, and cash flow statement for any public company.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. AAPL.US |
| kind | string | YES | Report type: IncomeStatement, BalanceSheet, CashFlow, All |
| period | string | YES | Report period: Annual, SemiAnnual, Q1, Q2, Q3, ThreeQ, QuarterlyFull |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"list": {
"IS": {
"indicators": [
{
"title": "Income Statement",
"short_title": "IS",
"currency": "USD",
"has_yoy": true,
"entry": "IS",
"periods": [
"FY2025",
"FY2024"
],
"accounts": [
{
"field": "EPS",
"name": "Earnings Per Share(USD)",
"percent": false,
"tip": "",
"values": [
{
"period": "FY 2025",
"year": 2025,
"fp_end": "1758945600",
"value": "7.46",
"ratio": "",
"yoy": "0.227"
}
]
}
]
}
]
}
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | FinancialReportsResponse |
| 400 | Bad request | None |
Schemas
FinancialReportsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object | true | Report data grouped by kind (key: report type code, e.g. IS, BS, CF) |
FinancialReportIndicator
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | false | Indicator title |
| short_title | string | false | Short title |
| currency | string | false | Currency |
| has_yoy | boolean | false | Whether year-over-year data is available |
| entry | string | false | Entry identifier |
| periods | string[] | false | Available reporting periods |
| accounts | object[] | false | List of financial line items, see FinancialAccount |
FinancialAccount
| Name | Type | Required | Description |
|---|---|---|---|
| field | string | true | Field identifier |
| name | string | false | Field display name |
| percent | boolean | false | Whether the value is a percentage |
| tip | string | false | Tooltip description |
| values | object[] | false | Historical values by period, see FinancialValue |
FinancialValue
| Name | Type | Required | Description |
|---|---|---|---|
| period | string | true | Period label (e.g. FY 2024) |
| year | integer | false | Fiscal year |
| fp_end | string | false | Period end timestamp |
| value | string | false | Reported value |
| ratio | string | false | Ratio value |
| yoy | string | false | Year-over-year growth rate |