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

Request

https://premium.aiera.com/api/events-v2/2641135/transcript/149716964?linguistics=true

Response

{
  "transcript_item_id": 149716964,
  "event_type": "transcript",
  "transcript": "Overall this is a solid revenue result, considering challenging market conditions.",
  "timestamp": "2024-11-05T03:34:37-05:00",
  "start_ms": 430366,
  "duration_ms": 7010,
  "speaker_id": 2735754,
  "speaker_type": "id",
  "original": "Overall this is a solid revenue result, considering challenging market conditions.",
  "audio_url": "https://audio.aiera.com/api/events/2641135/transcript/149716964/audio?api_key=API_KEY",
  "transcript_section": "presentation",
  "is_improved": false,
  "is_edited": false,
  "status": "active",
  "created": "2024-11-05T03:34:45",
  "modified": "2024-11-05T07:03:03",
  "linguistics": {
    "summaries": [],
    "topics": [],
    "sentiment": {
      "average": 1.0,
      "median": 1.0,
      "minimum": 1.0,
      "maximum": 1.0
    },
    "sentiment_breakouts": [
      {
        "start_offset": 0,
        "end_offset": 82,
        "sentiment": 1.0
      }
    ]
  }
}

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