GET
/
getTranscript
curl --request GET \
  --url https://v1.transcript.lol/api/getTranscript
{
  "transcriptId": "<string>",
  "sourceUrl": "<string>",
  "platform": "<string>",
  "title": "<string>",
  "description": "<string>",
  "thumbnailUrl": "<string>",
  "duration": 123,
  "currentStatus": "<string>",
  "failureReason": "<string>",
  "uploaderId": "<string>",
  "uploaderName": "<string>",
  "uploadedAt": "<string>",
  "statusInfo": [
    {
      "id": "<string>",
      "statusMessage": "<string>",
      "createdAt": "<string>"
    }
  ],
  "createdAt": 123,
  "speakerLabels": [
    "<string>"
  ],
  "qAndAs": [
    {
      "question": "<string>",
      "answer": "<string>",
      "sources": [
        {
          "transcriptId": "<string>",
          "startTime": "<string>",
          "endTime": "<string>",
          "content": "<string>"
        }
      ]
    }
  ],
  "partCount": 123,
  "partIndex": 123,
  "partSize": [
    123
  ],
  "transcriptLanguageCode": "<string>",
  "userId": "<string>",
  "paragraphs": {
    "transcript": "<string>",
    "paragraphs": [
      {
        "sentences": [
          {
            "text": "<string>",
            "start": 123,
            "end": 123
          }
        ],
        "speaker": 123,
        "num_words": 123,
        "start": 123,
        "end": 123
      }
    ]
  },
  "userPickedId": "<string>",
  "privacy": "PUBLIC",
  "aiFeatures": {}
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

transcriptId
string
required

Id of the transcript

partIndex
string

If this is a multipart transcript. Transcripts of content over an hour are broken into parts of upto 1 hour each.

Response

200 - application/json

OK

The response is of type object.