youtube

YouTube Extended Search

Each source declares supported modes, a JSON input schema, and an upper-bound credit estimate.

realtimeasyncbatch5 credits estimated

Request example

Send parameters inside params. The server rejects unknown fields.

youtube_search_extended
{
  "params": {
    "query": "<query>"
  },
  "source": "youtube_search_extended"
}

Input JSON Schema

schema.json
{
  "additionalProperties": false,
  "properties": {
    "query": {
      "maxLength": 2000,
      "minLength": 1,
      "type": "string"
    },
    "max_results": {
      "maximum": 700,
      "minimum": 1,
      "type": "integer"
    },
    "filters": {
      "additionalProperties": true,
      "type": "object"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}