v1

latestOpenAPI 3.1.1Proprietary2026-07-2687313591.4 KB
Transcripts

Get a single Transcript

Get a transcript with a given id with the first 100 fragments of the transcript. Use the /fragments endpoint to fetch all fragments of the transcript.

get/v2/transcripts/{transcriptId}

Path parameters

transcriptIdinteger required

The id of the Transcript

Response

OK

idinteger required

The transcript's unique identifier

createdAtstring date-time required

The date and time the transcript was created

languageCode'de' | 'en' | 'es' | 'fr' | 'id' | 'it' | 'ja' | 'ko' | 'nl' | 'pt' | 'ru' | 'sv' | 'uk' | 'zh' required

The language code of the transcript

Example response

{
  "id": 1234,
  "note": {
    "creator": {
      "id": 1,
      "firstName": "Jane",
      "lastName": "Doe",
      "primaryEmailAddress": "jane.smith@northpointvc.com",
      "type": "internal"
    },
    "mentions": [
      {
        "id": 1,
        "type": "person",
        "person": {
          "id": 1,
          "firstName": "Jane",
          "lastName": "Smith",
          "primaryEmailAddress": "jane.smith@northpointvc.com",
          "type": "internal"
        }
      }
    ]
  },
  "languageCode": "en"
}