Endpoints
Get Transcript
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
Query Parameters
Id of the transcript
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
.
Was this page helpful?
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": {}
}
Assistant
Responses are generated using AI and may contain mistakes.