ReferenceCorporate Actions

Corporate Actions - Fincrux Indian stock market API documentation

# Corporate Actions --- Fetches corporate actions for a company (dividends, bonus issues, stock splits, and rights issues), including announcement dates, ex-dates, record dates, amounts, and ratios.…

Corporate Actions

Fetches corporate actions for a company (dividends, bonus issues, stock splits, and rights issues), including announcement dates, ex-dates, record dates, amounts, and ratios.


Rate Limits

PlanRate Limit
Hobby5 requests / day
Plus10 requests / minute

Request

GET /api/corporate-actions/{company_symbol}

ParameterDescriptionPriorityType
api_keyUser Generated API Key. Generate Hererequiredstring
force_updateBypass cache and refresh from the data provider
Default false
optionalboolean

Response

FieldDescriptionType
successIndicates if the API call was successful or notstring
companyName of the companystring
trading_symbolNSE / BSE trading symbolstring
isinISIN used to resolve corporate actionsstring
dataList of corporate action eventsarray
data.nameEvent type, e.g. Dividend, Bonus, Split, Rightsstring
data.expiry_dateEx-date or effective date of the actionstring
data.amountMonetary amount (typically dividends); may be nulldecimal
data.ratioRatio for bonus / split / rights (e.g. 1:1); null if N/Astring
data.event_detailsDetailed key-value pairs for the eventarray
data.event_details.nameLabel, e.g. Announcement date, Ex dividend datestring
data.event_details.valueValue for that labelstring

Example

curl -X GET \ -H "Content-Type: application/json" \ --url 'https://api.fincrux.org/api/corporate-actions/RELIANCE?api_key={api_key}'
{ "success": "true", "company": "Reliance Industries Limited", "trading_symbol": "RELIANCE", "isin": "INE002A01018", "data": [ { "name": "Dividend", "expiry_date": "14 Aug 2025", "amount": 5.5, "ratio": null, "event_details": [ { "name": "Announcement date", "value": "25 Apr 2025" }, { "name": "Ex dividend date", "value": "14 Aug 2025" }, { "name": "Record date", "value": "14 Aug 2025" }, { "name": "Dividend type", "value": "Final" }, { "name": "Amount", "value": "5.5" }, { "name": "Dividend %", "value": "55.0" }, { "name": "Details", "value": "Rs.5.5000 per share(55%)Final Dividend" } ] } ] }

Designed & Shipped by Harshit Bansal