财务报告
获取任意上市公司的利润表、资产负债表和现金流量表。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 AAPL.US |
| kind | string | 是 | 报表类型:IncomeStatement(利润表)、BalanceSheet(资产负债表)、CashFlow(现金流量表)、All(全部) |
| period | string | 是 | 报告期: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 | 成功 | FinancialReportsResponse |
| 400 | 请求错误 | None |
Schemas
FinancialReportsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object | true | 按报表类型分组的数据(key 为报表类型代码,如 IS、BS、CF) |
FinancialReportIndicator
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | false | 指标标题 |
| short_title | string | false | 短标题 |
| currency | string | false | 货币 |
| has_yoy | boolean | false | 是否有同比数据 |
| entry | string | false | 条目标识符 |
| periods | string[] | false | 可用报告期列表 |
| accounts | object[] | false | 财务科目列表,见 FinancialAccount |
FinancialAccount
| Name | Type | Required | Description |
|---|---|---|---|
| field | string | true | 字段标识符 |
| name | string | false | 字段显示名称 |
| percent | boolean | false | 是否为百分比值 |
| tip | string | false | 提示说明 |
| values | object[] | false | 按报告期的历史数值,见 FinancialValue |
FinancialValue
| Name | Type | Required | Description |
|---|---|---|---|
| period | string | true | 报告期标签(如 FY 2024) |
| year | integer | false | 财政年度 |
| fp_end | string | false | 报告期结束时间戳 |
| value | string | false | 报告值 |
| ratio | string | false | 比率值 |
| yoy | string | false | 同比增长率 |