Corporate Actions
Get corporate action history (splits, mergers, spin-offs, rights issues) 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": {
"items": [
{
"id": "622620",
"action": "DividendExDate",
"act_type": "Distribution Plan",
"act_desc": "Cash dividend 0.27 USD",
"date": "20260514",
"date_str": "05.14",
"date_type": "Payment Date",
"date_zone": "EST",
"delay_content": "",
"is_delay": false,
"recent": false,
"live": null
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | CorporateActionsResponse |
| 400 | Bad request | None |
Schemas
CorporateActionsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | Corporate action list |
| ∟ id | string | false | Action ID |
| ∟ act_desc | string | false | Action description |
| ∟ act_type | string | false | Action type category |
| ∟ action | string | false | Action code (e.g. DividendExDate) |
| ∟ date | string | false | Event date (YYYYMMDD) |
| ∟ date_str | string | false | Short display date (MM.DD) |
| ∟ date_type | string | false | Date type label (e.g. Payment Date) |
| ∟ date_zone | string | false | Time zone (e.g. EST) |
| ∟ delay_content | string | false | Delay content description |
| ∟ is_delay | boolean | false | Whether the event is delayed |
| ∟ live | boolean | false | Whether currently live |
| ∟ recent | boolean | false | Whether this is a recent event |