Get Split Records
Get Split Records
Descriptionâ
Get RWA stock split/reverse split records.
HTTP Requestâ
- GET /api/v3/market/split-records
- Rate limit: 5/sec/IP
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1749484800000,
"data": [
{
"symbol": "KORUUSDT",
"type": "split",
"status": "pending",
"adjustmentRatio": "20",
"exDividendDate": "2026-06-09",
"exDividendDateTimezone": "ET",
"tradingHaltStartTime": "1749484800000",
"tradingHaltEndTime": "1749488400000"
}
]
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| >symbol | String | Trading pair name, e.g. KORUUSDT |
| >type | String | Split typesplit Stock splitreverse_split Reverse stock split |
| >status | String | Split statuspending Upcoming splitongoing Split in progresscompleted Split completed |
| >adjustmentRatio | String | Adjustment ratio For a split, the value is greater than 1, e.g. 20 means 1-for-20 splitFor a reverse split, the value is less than 1, e.g. 0.1 means 10-for-1 reverse split |
| >exDividendDate | String | Ex-dividend date Format: yyyy-MM-dd |
| >exDividendDateTimezone | String | Timezone of the ex-dividend date, always returns ET |
| >tradingHaltStartTime | String | Trading halt start time Unix timestamp in milliseconds |
| >tradingHaltEndTime | String | Trading halt end time Unix timestamp in milliseconds |