All Payouts by Symbol
Retrieve all payout information (dividends, splits, bonus, rights) for a specific stock symbol.
GET/3.0/payouts
Description
This endpoint returns comprehensive payout information for a specified stock symbol, including dividend payments, stock splits, bonus shares, and rights issues. It provides historical payout records with dates, amounts, and ratios for informed investment decisions.
Request
Authentication
- Type: Bearer Token
- Required: Yes
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
symbol | string | Yes | Stock symbol/ticker code | WAFI |
Response
Success Response (200)
{
"status": "ok",
"message": "",
"data": [
{
"id": "WAFI_20241115",
"symbol": "WAFI",
"title": "Dividend Announcement",
"date": "2024-11-15",
"ex_date": "2024-11-10",
"book_closure_from": "2024-11-12",
"book_closure_to": "2024-11-14",
"entitlement_date": "2024-11-09",
"dividend": 2.50,
"bonus": 0.0,
"right_price": 0.0,
"right_issue": 0.0,
"split_num": 0,
"split_den": 0
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique payout record identifier |
symbol | string | Stock symbol/ticker code |
title | string | Payout announcement title |
date | string | Announcement/publication date (YYYY-MM-DD) |
ex_date | string | Ex-date for the payout |
book_closure_from | string | Book closure start date |
book_closure_to | string | Book closure end date |
entitlement_date | string | Entitlement date |
dividend | number | Dividend per share |
bonus | number | Bonus shares ratio |
right_price | number | Right issue price |
right_issue | number | Right issue ratio |
split_num | integer | Stock split numerator |
split_den | integer | Stock split denominator |
Error Responses
For detailed Common Error responses, see the Error Handling.
Missing Symbol (200)
{
"status": "error",
"message": "'symbol' parameter not provided"
}
Examples
Get All Payouts
curl -X GET "https://csapis.com/3.0/payouts?symbol=WAFI" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Use Cases
- Dividend Tracking: Monitor dividend payments and ex-dates
- Corporate Action History: Track all corporate actions (splits, bonus, rights) for a stock
- Investment Analysis: Analyze payout history for dividend growth and consistency
- Tax Planning: Plan for upcoming dividend payments and tax implications
- Valuation Models: Include historical payouts in dividend discount models
- Rights Issue Tracking: Monitor and track rights offerings