Dividends
Get dividend history and upcoming dividend announcements for a security.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. AAPL.US |
| start_date | string | NO | Start date in YYYY-MM-DD format |
| end_date | string | NO | End date in YYYY-MM-DD format |
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 | Success | DividendsResponse |
| 400 | Bad request | None |
Schemas
DividendsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object[] | true | Dividend records |
| ∟ id | string | false | Dividend event ID |
| ∟ symbol | string | false | Security symbol |
| ∟ desc | string | false | Dividend description |
| ∟ ex_date | string | false | Ex-dividend date |
| ∟ payment_date | string | false | Payment date |
| ∟ record_date | string | false | Record date |