get_transcript
Extract YouTube video transcripts in your preferred language by providing the video URL. Supports pagination for lengthy transcripts to simplify text retrieval and processing.
Instructions
Retrieves the transcript of a YouTube video.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | No | The preferred language for the transcript | en |
next_cursor | No | Cursor to retrieve the next page of the transcript | |
url | Yes | The URL of the YouTube video |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"default": "en",
"description": "The preferred language for the transcript",
"title": "Lang",
"type": "string"
},
"next_cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Cursor to retrieve the next page of the transcript",
"title": "Next Cursor"
},
"url": {
"description": "The URL of the YouTube video",
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_transcriptArguments",
"type": "object"
}