v1

latestOpenAPI 3.0.02026-07-266091181.5 KB
events

Events

Returns corporate events including investor meetings, conferences, and special announcements

get/api/v2/calendar/events

Query parameters

pageinteger

Page offset. For optimization, performance and technical reasons, page offsets are limited from 0 - 100000. Limit the query results by other parameters such as date. Default is 0

pageSizeinteger

Number of results returned. Limit 1000

parameters[date]string date

Date to query for calendar data. Shorthand for date_from and date_to if they are the same. Defaults for latest

parameters[date_from]string date

Start date in YYYY-MM-DD format

parameters[date_to]string date

End date in YYYY-MM-DD format

parameters[importance]0 | 1 | 2 | 3 | 4 | 5

The importance level to filter by. Uses Greater Than or Equal To the importance indicated

parameters[tickers]string csv

One or more ticker symbols separated by a comma. Maximum 50 tickers

parameters[updated]integer

Records last Updated Unix timestamp (UTC). This will force the sort order to be Greater Than or Equal to the timestamp indicated

search_keys_type'event_type'

Search keys type

search_keysstring

Search keys

Response

Events

Example response

{
  "events": [
    {
      "date_end": "2024-01-11",
      "date_start": "2024-01-09",
      "event_name": "CES 2024",
      "event_type": "Conference",
      "id": "60a7f5e8e4b0f5a3c8e9f5bc",
      "importance": 3,
      "international_number": "+1-212-555-0100",
      "location": "Las Vegas Convention Center",
      "phone_number": "1-800-555-0100",
      "securities": [
        {
          "country": "US",
          "exchange": "NASDAQ",
          "isin": "US0378331005",
          "symbol": "AAPL"
        }
      ],
      "source_link": "https://www.example.com/event-details",
      "start_time": "09:00:00",
      "tags": [
        "[\"Technology\"",
        "\"Innovation\"]"
      ],
      "updated": 1704819600,
      "webcast_link": "https://webcast.example.com/event123"
    }
  ]
}