Calendar

Get event calendar item

Fetch a single calendar event by ID


GET /calendar-v2/{event_id}

ParameterTypeDataTypeDescription
event_idpathintegerThe event id to fetch the calendar info for

Request

https://premium.aiera.com/api/calendar-v2/2646352

Response

{
    "event_id": 2646352,
    "event_title": "Q3 2024 Amazon.com Inc Earnings Call",
    "event_type": "earnings",
    "event_date": "2024-10-31T17:00:00",
    "equity": {
        "equity_id": 1,
        "local_ticker": "AMZN",
        "bloomberg_ticker": "AMZN:US",
        "ric": "AMZN.OQ",
        "permid": "4295905494",
        "isin": "US0231351067",
        "exchange_mic": "XNAS"
    },
    "has_unknown_time": false,
    "connection_expected": true,
    "broadcast_url": "https://events.q4inc.com/attendee/878809675",
    "replay_url": "https://events.q4inc.com/attendee/878809675",
    "conference_number": null,
    "conference_pin": null,
    "slides_url": "https://a.aiera.com/api/events/2646352/assets/slides_url",
    "press_url": "https://a.aiera.com/api/events/2646352/assets/press_url",
    "transcription_status": "published",
    "transcription_audio_url": "https://audio.aiera.com/api/events/2646352/audio",
    "status": "active",
    "created": "2024-10-18T14:43:56",
    "modified": "2024-11-01T03:00:21"
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/calendar-v2/{event_id}' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.request("GET", "https://premium.aiera.com/api/calendar-v2/{event_id}", headers={"X-API-Key": "xxx"})
Previous
Coverage