transcripts_getTranscript
Retrieve the transcript of a YouTube video by specifying its video ID and optional language code. Use this tool to access video content text for analysis, translation, or accessibility purposes.
Instructions
Get the transcript of a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Language code for the transcript | |
videoId | Yes | The YouTube video ID |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Language code for the transcript",
"type": "string"
},
"videoId": {
"description": "The YouTube video ID",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}