Summaries
Get summary
Fetch summaries for an event ID
GET /summaries/{event_id}
Parameter | Type | DataType | Description |
---|---|---|---|
event_id | path | integer | The event ID for the desired summary |
Request
https://premium.aiera.com/api/summaries/2652890?
Response
[
{
"event": {
"event_id": 2652890,
"equity_id": 1,
"local_ticker": "AMZN",
"bloomberg_ticker": "AMZN:US",
"ric": "AMZN.OQ",
"isin": "US0231351067",
"permid": "4295905494",
"exchange_mic": "XNAS",
"title": "ASR CLI Test: 2024-11-06T23:42:26.805167",
"event_type": "custom",
"event_date": "2024-11-06T18:47:57",
"has_unknown_time": false,
"connection_expected": true,
"conference_number": null,
"conference_pin": null,
"broadcast_url": "https://graphql.aiera.com/api/events/2175209/audio?api_key=API_KEY",
"replay_url": null,
"slides_url": null,
"slides_url_type": null,
"press_url": null,
"press_url_type": null,
"fiscal_quarter": null,
"fiscal_year": null,
"public_url": "https://dashboard.aiera.com/p/evtmin/3b713fe2bd30ff35924a18c9650ede2d",
"public_share_url": "https://dashboard.aiera.com/p/AMZN/event/11/06/2024/3b713fe2bd30ff35924a18c9650ede2d",
"transcription_status": "active",
"transcription_audio_url": null,
"transcription_audio_offset_seconds": 241,
"has_transcripts": true,
"has_pricing": true,
"status": "active",
"created": "2024-11-06T18:42:28",
"modified": "2024-11-07T03:23:06"
},
"summary": {
"title": "Amazon's Q1 2021 Financial Highlights: Strong Growth Amid Pandemic Challenges",
"summary": [
"The ASR CLI Test: 2024-11-06T23:42:26.805167 event discussed Amazon's Q1 2021 financial results. Key highlights included accelerated AWS revenue growth and expanded infrastructure, with plans for 15 more availability zones in 5 regions. The consumer business saw strong global demand, with international segment revenue growing 50% year-over-year on an FX-neutral basis. North America revenue grew 39%. Third-party seller services revenue increased 60% year-over-year, with 3P units representing 55% of total paid units. Prime Video streaming hours increased over 70% year-over-year. Risks mentioned included pandemic-related uncertainties affecting operations, consumer demand, and economic activity. The company emphasized its focus on employee safety measures and the trend of enterprises moving to cloud services. No specific forward-looking guidance was provided in the transcript."
],
"model": "zeroshot",
"type": "everything",
"version": "live",
"audio_clip": null,
"video_clip": null,
"priority": 2,
"created": "2024-11-06T19:44:06",
"modified": null
}
}
]
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/summaries/{event_id}' \
--header 'X-API-Key: xxx'
Python
import requests
requests.request("GET", "https://premium.aiera.com/api/summaries/{event_id}", headers={"X-API-Key": "xxx"})