Corporate Activity
Get corporate activity item
Fetch a single corporate activity item by ID
GET /corporate-activity/{corporate_activity_id}
Parameter | Type | DataType | Description |
---|---|---|---|
corporate_activity_id | path | string | The activity id for which to fetch info |
include_audit | query | boolean | Whether to include change audit info |
Request
https://premium.aiera.com/api/corporate-activity/8ce7f39c-8cfa-11ef-ae02-040106a3ab01
Response
{
"corporate_activity_id": "8ce7f39c-8cfa-11ef-ae02-040106a3ab01",
"title": "Amazon.com Inc Q3 Earnings 2024 - Conference Call",
"type": "companymeeting",
"subtype": "conferencecall",
"when": "2024-10-31T17:00:00",
"date_is_exact": true,
"is_tentative": false,
"is_estimated": false,
"is_postponed": false,
"is_cancelled": false,
"raw_identifiers": {
"isin": null,
"cusip": "023135106",
"company_name": "Amazon.com Inc",
"delisted": false
},
"event": {
"event_id": 2646352,
"event_title": "Q3 2024 Amazon.com Inc Earnings Call",
"event_type": "earnings",
"event_date": "2024-10-31T17:00:00",
"has_unknown_time": false,
"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",
"slides_url_type": "confirmed",
"press_url": "https://a.aiera.com/api/events/2646352/assets/press_url",
"press_url_type": "estimated",
"transcription_status": "published",
"transcription_audio_url": "https://audio.aiera.com/api/events/2646352/audio?api_key=API_KEY",
"status": "active",
"created": "2024-10-18T14:43:56",
"modified": "2024-11-01T03:00:21"
},
"equity": {
"equity_id": 1,
"company_id": 1,
"company_name": "Amazon",
"local_ticker": "AMZN",
"bloomberg_ticker": "AMZN:US",
"ric": "AMZN.OQ",
"permid": "4295905494",
"isin": "US0231351067",
"cusip": "023135106",
"exchange_mic": "XNAS"
},
"related_ids": [],
"metadata": {
"contact": {
"name": "Dave Fildes",
"email": "amazon-ir@amazon.com",
"telephone": "+1 206 266 2171"
},
"speakers": null,
"webcasts": [
{
"url": "https://ir.aboutamazon.com/events/",
"description": null
}
],
"regarding": null,
"callDetails": {
"dialInNumber": null
},
"localLanguage": false,
"replayDetails": {
"date": "2024-10-31T17:00:00.000Z",
"timeZone": "America/New_York",
"dialInEnds": "2024-10-31T00:00:00.000+00:00",
"webcastUrl": "https://ir.aboutamazon.com/events/"
},
"preRegistration": false,
"preRegistrationUrl": null
},
"explanation": "On October 31, 2024, Amazon.com Inc will hold their Q3 earnings conference call for the fiscal year. The event will be confirmed to take place in Seattle, US at 9:00 PM UTC. The conference call will be accessible via webcast, with details and a replay available at https://ir.aboutamazon.com/events/.",
"audit": [
{
"change_date": "2024-10-17T22:42:01",
"change_type": "create"
}
],
"created": "2024-10-17T22:42:01",
"modified": null
}
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/corporate-activity/{corporate_activity_id}' \
--header 'X-API-Key: xxx'
Python
import requests
requests.request("GET", "https://premium.aiera.com/api/corporate-activity/{corporate_activity_id}", headers={"X-API-Key": "xxx"})