Finance Data Endpoints
财务数据 / Finance Data
Financial statements and corporate actions endpoints.
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/finance/balance | Balance sheet |
| GET | /v1/finance/income | Income statement |
| GET | /v1/finance/cash-flow | Cash flow statement |
| GET | /v1/finance/forecast | Performance forecast |
| GET | /v1/finance/shares | Share changes |
| GET | /v1/finance/dividend | Dividend history |
| GET | /v1/finance/lifting | Restricted share lifting |
1. 资产负债表 / Balance Sheet
| Method | Endpoint |
|---|---|
| GET | /v1/finance/balance |
获取上市公司资产负债表数据。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | ✅ | 股票代码 |
limit | int | - | 返回条数 (默认 20) |
GET
/v1/finance/balance2. 利润表 / Income Statement
| Method | Endpoint |
|---|---|
| GET | /v1/finance/income |
获取上市公司利润表数据。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | ✅ | 股票代码 |
limit | int | - | 返回条数 (默认 20) |
GET
/v1/finance/income3. 现金流量表 / Cash Flow
| Method | Endpoint |
|---|---|
| GET | /v1/finance/cash-flow |
获取上市公司现金流量表数据。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | ✅ | 股票代码 |
limit | int | - | 返回条数 (默认 20) |
GET
/v1/finance/cash-flow4. 业绩预告 / Performance Forecast
| Method | Endpoint |
|---|---|
| GET | /v1/finance/forecast |
获取上市公司业绩预告数据。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | - | 股票代码 (可选) |
report_period | string | - | 报告期 (YYYY-MM-DD) |
limit | int | - | 返回条数 (默认 100) |
GET
/v1/finance/forecast5. 股本变动 / Share Capital
| Method | Endpoint |
|---|---|
| GET | /v1/finance/shares |
获取上市公司股本变动历史。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | ✅ | 股票代码 |
limit | int | - | 返回条数 (默认 20) |
GET
/v1/finance/shares6. 分红数据 / Dividend
| Method | Endpoint |
|---|---|
| GET | /v1/finance/dividend |
获取上市公司分红送转历史。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | ✅ | 股票代码 |
limit | int | - | 返回条数 (默认 20) |
GET
/v1/finance/dividend7. 限售解禁 / Share Lifting
| Method | Endpoint |
|---|---|
| GET | /v1/finance/lifting |
获取限售股解禁数据。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
stock_code | string | - | 股票代码 (可选) |
start_date | string | - | 开始日期 |
end_date | string | - | 结束日期 |
limit | int | - | 返回条数 (默认 100) |
GET
/v1/finance/lifting