GetCorporateAnnouncements returns official company disclosures on earnings, mergers, dividends, leadership changes, and other key events that impact shareholders, stock prices, and investment decisions.
The optional parameters like 'descriptor','descriptorId' and 'category' can be fetched using the GetCorporateAnnouncementsCategories functions.
Supported Parameters| Parameter | ValueType | Description |
|---|---|---|
| Exchange | String value like BSE | Name of supported exchange. Use the GetExchanges function to retrieve the list of available exchanges. |
| InstrumentIdentifier | String value like RELIANCE | Optional Parameter. How to get list of available instruments and identifiers you can find here. |
| From | Numerical value of UNIX Timestamp like ‘1388534400’ (01-01-2014 0:0:0) | Optional Parameter. Unix Time Stamp in seconds. Please Visit Epoch Converter to get formulae to convert human readable time to Epoch and vice versa (scroll to end of their home page) |
| To | Numerical value of UNIX Timestamp like ‘1388534400’ (01-01-2014 0:0:0) | Optional Parameter. Unix Time Stamp in seconds. Please Visit Epoch Converter to get formulae to convert human readable time to Epoch and vice versa (scroll to end of their home page) |
| Descriptor | String value | Optional Parameter. Name or description of the corporate announcement category. Example: Board Meeting, Dividend, Results, etc. |
| DescriptorId | Integer value | Optional Parameter. Unique identifier assigned to a specific announcement descriptor/category. |
| Category | String value | Optional Parameter. Classification of the corporate announcement used to group similar announcement types. |
ScripId, FillingDate, MeetingDate, TradeDate, ScripCode, ScripName, FileStatus, HeadLine, NewsSubject, AttachmentName, NewsBody, Descriptor, CriticalNews, AnnounceType, MeetingType, DescriptorId, AttachmentUrl, ReceivedAt, SavedAt.
For details, please see glossary.
function GetCorporateAnnouncements()
{
var request =
{
MessageType: "GetCorporateAnnouncements",
Exchange: "BSE",
//InstrumentIdentifier:"SBIN",
//From:1781461800,
//To:1781514500,
//Descriptor:"Change in Directorate",
//DescriptorId:80,
//category:"Board Meeting"
};
doSend(request);
}