youtube
YouTube Search
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_search
{
"params": {
"query": "<query>"
},
"source": "youtube_search"
}Input JSON Schema
schema.json
{
"additionalProperties": false,
"properties": {
"query": {
"maxLength": 2000,
"minLength": 1,
"type": "string"
},
"max_results": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"filters": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"query"
],
"type": "object"
}