youtube
YouTube Transcript
Each source declares supported modes, a JSON input schema, and an upper-bound credit estimate.
realtimeasyncbatch1 credits estimated
Request example
Send parameters inside params. The server rejects unknown fields.
youtube_transcript
{
"params": {
"video_id": "<video_id>"
},
"source": "youtube_transcript"
}Input JSON Schema
schema.json
{
"additionalProperties": false,
"properties": {
"video_id": {
"maxLength": 100,
"minLength": 1,
"pattern": "^[A-Za-z0-9_-]+$",
"type": "string"
},
"language": {
"maxLength": 35,
"minLength": 1,
"pattern": "^[A-Za-z0-9-]+$",
"type": "string"
},
"auto": {
"type": "boolean"
}
},
"required": [
"video_id"
],
"type": "object"
}