get_transcript
Extract YouTube video transcripts in text, JSON, or SRT format by providing the video ID or URL. Supports multiple languages for accurate transcript retrieval.
Instructions
Extract transcript from a single YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
language | No | Language code (e.g., "en", "es", "fr") | en |
videoId | Yes | YouTube video ID or URL |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"text",
"json",
"srt"
],
"type": "string"
},
"language": {
"default": "en",
"description": "Language code (e.g., \"en\", \"es\", \"fr\")",
"type": "string"
},
"videoId": {
"description": "YouTube video ID or URL",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}