youtube

YOUTUBE_SEARCH_YOU_TUBE

Searches YouTube for videos, channels, or playlists using a query term, returning the raw API response.

Remote youtube

Other tools also called YOUTUBE_SEARCH_YOU_TUBE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "title": "Q",
      "examples": [
        "OpenAI",
        "machine learning tutorial",
        "\"exact phrase\"",
        "@mkbhd"
      ],
      "description": "Search query term. Supports: - Basic text: 'machine learning' - Exact phrases: '\"exact phrase\"' - Exclusions: 'python -snake' - Multiple terms: 'AI OR ML' - Channel search: '@channelhandle' or channel name"
    },
    "part": {
      "type": "string",
      "title": "Part",
      "default": "snippet",
      "examples": [
        "snippet"
      ],
      "description": "Comma-separated list of search resource properties (e.g., 'id', 'snippet') to include in the API response."
    },
    "type": {
      "type": "string",
      "title": "Type",
      "default": "video",
      "examples": [
        "video"
      ],
      "description": "Restricts search to 'video', 'channel', or 'playlist'; comma-separate for multiple types (e.g., 'video,channel')."
    },
    "pageToken": {
      "type": "string",
      "title": "Page Token",
      "examples": [
        "CAUQAA"
      ],
      "description": "Pagination token from a previous response's 'nextPageToken' or 'prevPageToken', used to retrieve a specific page of results."
    },
    "maxResults": {
      "type": "integer",
      "title": "Max Results",
      "default": 5,
      "maximum": 50,
      "minimum": 1,
      "examples": [
        "5"
      ],
      "description": "Maximum number of items to return per page."
    }
  }
}
          

Provider

youtube →