Corporate Activity

Get corporate activity item

Fetch a single corporate activity item by ID


GET /corporate-activity/{corporate_activity_id}

ParameterTypeDataTypeDescription
corporate_activity_idpathstringThe activity id for which to fetch info
include_auditpathbooleanWhether to include change audit info

Response

{
    "corporate_activity_id": "475be7a0-6e0a-11e7-93b8-040106a3ab01",
    "title": "Amazon.com Inc Q3 Earnings 2017",
    "type": "companyresults",
    "subtype": "earning",
    "when": "2017-10-26T16: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": 5227,
        "event_title": "Q3 2017 Earnings Call",
        "event_type": "earnings",
        "event_date": "2017-10-26T17:30:00",
        "has_unknown_time": false,
        "broadcast_url": "https://edge.media-server.com/m6/p/p76hfxvg",
        "replay_url": "https://edge.media-server.com/m6/p/p76hfxvg",
        "conference_number": null,
        "conference_pin": null,
        "slides_url": "https://a.aiera.com/api/events/5227/assets/slides_url",
        "press_url": "https://a.aiera.com/api/events/5227/assets/press_url",
        "transcription_status": "published",
        "transcription_audio_url": null,
        "status": "active",
        "created": "2019-07-25T16:48:19",
        "modified": "2023-09-17T10:40:42"
    },
    "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": [
        "9629291a-7c63-11ee-96d9-040106a3ab01"
    ],
    "metadata": {
        "period": "quarter3",
        "fiscalYear": "2017-12-31",
        "marketStatus": "after"
    },
    "explanation": "On October 26, 2017, Amazon.com Inc will release their Q3 earnings for the fiscal year ending on December 31, 2017. The results will be announced after the market closes, and will take place in Seattle, WA at 8:00 PM UTC.",
    "audit": [
        {
            "change_date": "2017-10-13T02:33:38",
            "change_type": "update",
            "changes": {
                "start_date": {
                    "prior": "2017-10-24 20:00:00.000000000 Z",
                    "adjusted": "2017-10-26 20:00:00.000000000 Z"
                }, ...
            }
        },
        {
            "change_date": "2017-07-21T07:46:49",
            "change_type": "create"
        }, ...
    ],
    "created": "2023-11-06T05:15:47.995Z",
    "modified": "2023-11-06T05:16:06.894Z"
}

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"})
Previous
Find Activity