分红历史
获取指定证券的分红历史及即将公布的分红信息。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 AAPL.US |
| start_date | string | 否 | 开始日期,格式 YYYY-MM-DD |
| end_date | string | 否 | 结束日期,格式 YYYY-MM-DD |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"list": [
{
"id": "12345",
"symbol": "AAPL.US",
"ex_date": "2026-02-07",
"payment_date": "2026-02-13",
"record_date": "2026-02-10",
"desc": "Cash dividend 0.25 USD"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | DividendsResponse |
| 400 | 请求错误 | None |
Schemas
DividendsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object[] | true | 分红记录列表,见 DividendItem |
| ∟ id | string | false | Dividend event ID |
| ∟ symbol | string | false | Security symbol |
| ∟ desc | string | false | Dividend description |
| ∟ ex_date | string | false | 除息日 |
| ∟ payment_date | string | false | Payment date |
| ∟ record_date | string | false | Record date |