Events

Get Transcripts

Returns the available transcripts for an event


GET /events-v2/{event_id}/transcript

ParameterTypeDataTypeDescription
event_idpathintegerThe event id for which to fetch the transcripts
modified_sincequerydatetimeReturns transcripts modified since this date
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
include_deletedquerybooleanWhether or not to include deleted transcripts
include_everythingquerybooleanWhether or not to include any transcripts, regardless of offset (if available)
include_tagsquerybooleanWhether or not to include transcript tagging (presentation, Q&A, etc)
word_offsetsquerybooleanWhether 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"})
Previous
Get Event