Events
Get Transcripts
Returns the available transcripts for an event
GET /events-v2/{event_id}/transcript
Parameter | Type | DataType | Description |
---|---|---|---|
event_id | path | integer | The event id for which to fetch the transcripts |
modified_since | query | datetime | Returns transcripts modified since this date |
linguistics | query | boolean | Whether to include linguistics metadata in the response |
pricing | query | boolean | Whether to include price reaction information |
improved_only | query | boolean | Whether or not to only return the post-realtime improved transcripts |
include_deleted | query | boolean | Whether or not to include deleted transcripts |
include_everything | query | boolean | Whether or not to include any transcripts, regardless of offset (if available) |
include_tags | query | boolean | Whether or not to include transcript tagging (presentation, Q&A, etc) |
word_offsets | query | boolean | Whether to include word-by-word durations and offsets |
NOTE
- modified_since Can be used to continually fetch just the newer transcripts during a live event.
Request
https://premium.aiera.com/api/events-v2/2641135/transcript?linguistics=true&include_tags=true
Response
[
{
"event_id": 2641135,
"transcript_item_id": 149716896,
"event_type": "transcript",
"transcript": "Okay.",
"timestamp": "2024-11-05T03:32:46-05:00",
"start_ms": 318776,
"duration_ms": 1120,
"original": "Okay.",
"audio_url": "https://audio.aiera.com/api/events/2641135/transcript/149716896/audio?api_key=API_KEY",
"transcript_section": "presentation",
"is_translated": false,
"is_improved": false,
"is_edited": false,
"tags": {
"section": "presentation",
"is_presentation": true,
"is_question": false,
"is_answer": false,
"is_disclosure": false
},
"status": "active",
"created": "2024-11-05T03:32:48",
"modified": "2024-11-05T07:02:17",
"linguistics": {
"summaries": [],
"topics": [],
"sentiment": {
"average": 0.0,
"median": 0.0,
"minimum": 0.0,
"maximum": 0.0
},
"sentiment_breakouts": []
}
},
...
{
"event_id": 2641135,
"transcript_item_id": 149716954,
"event_type": "transcript",
"transcript": "5% lower on an organic trading days adjusted basis, and 3% lower on an organic basis.",
"timestamp": "2024-11-05T03:34:23-05:00",
"start_ms": 416176,
"duration_ms": 6950,
"speaker_id": 2735754,
"speaker_type": "id",
"speaker_name": "Denny Mashed",
"speaker_title": "AI Assigned",
"original": "5% lower on an organic trading days adjusted basis, and 3% lower on an organic basis.",
"audio_url": "https://audio.aiera.com/api/events/2641135/transcript/149716954/audio?api_key=API_KEY",
"transcript_section": "presentation",
"is_translated": false,
"is_improved": false,
"is_edited": false,
"tags": {
"section": "presentation",
"is_presentation": true,
"is_question": false,
"is_answer": false,
"is_disclosure": false
},
"status": "active",
"created": "2024-11-05T03:34:31",
"modified": "2024-11-05T07:03:01",
"linguistics": {
"summaries": [],
"topics": [],
"sentiment": {
"average": -1.0,
"median": -1.0,
"minimum": -1.0,
"maximum": -1.0
},
"sentiment_breakouts": [
{
"start_offset": 0,
"end_offset": 85,
"sentiment": -1.0
}
]
}
},
...
]
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/events/{event_id}/transcript' \
--header 'X-API-Key: xxx'
Python
import requests
requests.get("https://premium.aiera.com/api/events/{event_id}/transcript", headers={"X-API-Key": "xxx"})