Events

Get Transcript Item

Returns a specific transcript item for an event


/events-v2/{event_id}/transcript/{transcript_item_id}

Request Type
GET
ParameterTypeDataTypeDescription
event_idpathintegerThe event id for which to fetch the transcripts
transcript_item_idpathintegerThe transcript item id to fetch
linguisticsquerybooleanWhether to include linguistics metadata in the response
pricingquerybooleanWhether to include price reaction information
improved_onlyquerybooleanWhether or not to only return the post-realtime improved transcripts

Response

{
  "transcript_item_id": 108112757,
  "event_type": "transcript",
  "transcript": "with 60% unhedged in the second half of 2023. This provides us with significant exposure to a rising oil price environment.",
  "timestamp": "2023-03-08T04:06:50-05:00",
  "start_ms": 281978,
  "duration_ms": 9036,
  "speaker_id": 1058674,
  "speaker_type": "dia",
  "speaker_name": "John Doe",
  "speaker_title": "President",
  "person_id": 12345,
  "original": "with 60% unhedged in the second half of 2023. This provides us with significant exposure to a rising oil price environment.",
  "is_translated": false,
  "audio_url": "https://audio.aiera.com/api/events/2379307/transcript/108112757/audio?api_key=caec4e765af5680f38098e811014d28f",
  "is_improved": true,
  "is_edited": false,
  "modified": "2023-03-08T04:07:05"
}

Code Samples

Bash

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

Python

import requests
requests.get("https://premium.aiera.com/api/events/{event_id}/transcript/{transcript_item_id}", headers={"X-API-Key": "xxx"})
Previous
Get Transcripts