Events Calendar
A financial data API that, given a list of company identifiers, returns details of key corporate events—such as earnings calls, conference calls, and US IPO listings—allowing investors and analysts to track upcoming and historical company announcements in real time.
Authorizations
Body
A list of RavenPack internal entity identifiers. Bigdata uses the RavenPack Entity identifier (RP_Entity_ID) to uniquely reference entities such as companies. This identifier is a 6-character alphanumeric code (letters and numbers only). Example: Alphabet Inc. (4A6F00)
"4A6F00"
The start date of the time range for retrieving events. Only events occurring on or after this date will be included. The expected date format is 'YYYY-MM-DD'.
"2025-09-02"
The end date of the time range for retrieving events. Only events occurring on or before this date will be included. The expected date format is 'YYYY-MM-DD'.
"2025-09-03"
A list of country codes (ISO 3166-1 alpha-2) to filter events by country. If omitted, events from all countries will be returned. The IPO calendar covers US offerings only, so 'ipos-calendar' events are included when the country list is omitted or empty, or when 'US' is included in the list.
"US"
Exchange code(s) to filter events by. Accepts MIC codes (ISO 10383, e.g. 'XNYS', 'XNGS'). Accepts a single exchange or a list. Setting this filter excludes 'ipos-calendar' events from the response entirely - the IPO calendar reports exchanges as free text rather than MIC codes, so it cannot honour the filter.
"XNYS"
A list of event categories to filter by. If omitted, all event types will be returned. Events covered: 'earnings-call', 'conference-call', 'ipos-calendar'. IPO listings are US-only calendar.'cursor' 'exchanges' filters don't apply to ipos-calendar events. Access to 'ipos-calendar' is enabled per organization. A category your organization does not have is left out of the response and the rest of the request is served; a request left with no category to serve returns 403.
earnings-call, conference-call, ipos-calendar "earnings-call"
The cursor for pagination. Use the 'cursor' value from the previous response's pagination to get the next set of results.
"375207"
The number of results to return per page. Must be between 1 and 1000, both inclusive. It bounds the transcript events a page pages through; IPO listings are returned alongside them, so a page can carry more events than the limit.
1 <= x <= 1000100
Response
Successful Response
A dictionary mapping RP entity IDs to lists of event calendar entries for each company. Only events whose company has an rp_entity_id appear here; the rest are in 'events_unmapped', so read both to get the whole calendar.
Common pagination response for endpoints that support pagination.
Events whose company has not yet been mapped to an rp_entity_id appear here instead of in 'results'. This reflects a temporary state in the mapping process: once the company begins trading and mapping completes, the event moves into 'results'. Identify these events by 'ticker' and 'company_name'.