Get Dividends
Get Dividends
Descriptionâ
Get dividend and split history records for a specified stock.
HTTP Requestâ
- GET /api/v3/reality/market/dividends
- Rate limit: 1/sec/IP
- Permission: None
Request
curl "https://api.bitget.com/api/v3/reality/market/dividends?code=MU" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameter | Type | Required | Description |
|---|---|---|---|
| code | String | Yes | Company code e.g., MU |
| limit | String | No | Limit per page Default: 20. Maximum:100 |
| cursor | String | No | Cursor Pagination is implemented by omitting the cursor in the first query and applying the cursor from the previous query for subsequent pages |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"type": "cash_dividend",
"announcementDate": "2026-05-10",
"recordDate": "2026-06-01",
"exrightDate": "2026-06-02",
"dividendDate": "2026-06-15",
"dividendPerShare": "0.12",
"stockDividendPerShare": "",
"splitValidDate": "",
"splitNumerator": "",
"splitDenominator": ""
}
],
"cursor": "1233319323918499840"
}
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| list | Array | Dividend and split list |
| >type | String | Typecash_dividend Cash dividendstock_split Stock splitstock_dividend Stock dividend |
| >announcementDate | String | Announcement date |
| >recordDate | String | Record date |
| >exrightDate | String | Ex-dividend/ex-rights date |
| >dividendDate | String | Dividend payment date |
| >dividendPerShare | String | Cash dividend per share |
| >stockDividendPerShare | String | Stock dividend per share |
| >splitValidDate | String | Split effective date |
| >splitNumerator | String | Split numerator |
| >splitDenominator | String | Split denominator |
| cursor | String | Cursor |