v1

latestOpenAPI 3.0.02026-07-26213850.5 KB
transcripts

Get a source-video transcript

Fetch the trimmed source-video transcript for a project. ASR internals (seek, tokens, log-probabilities, etc.) are stripped. For API callers on a range-limited project, paragraphs are filtered to the billed curation range; internal callers and full-source submissions get the full transcript.

get/api/transcripts

Query parameters

q'findByProjectId' required

Query variant. Public callers must pass findByProjectId.

projectIdstring required
Example:P2120900kDmP

Project ID.

Response

Example response

{
  "data": [
    [
      {
        "end": 10.5,
        "text": "Hello and welcome to the show.",
        "speaker": "SPEAKER_00",
        "words": [
          {
            "word": "hello",
            "start": 0.12,
            "end": 0.48
          }
        ]
      }
    ]
  ]
}