N8N Tools - YouTube Enhanced icon

N8N Tools - YouTube Enhanced

Comprehensive YouTube Data API v3 and Analytics integration for N8N workflows

Actions83

Overview

The "Search Channels" operation of the YouTube Enhanced node allows users to perform searches specifically for YouTube channels based on a search query and various filtering options. This operation is useful when you want to find channels related to a particular topic, keyword, or interest area.

Typical use cases include:

  • Discovering new YouTube channels relevant to your niche or industry.
  • Automating content curation workflows by finding channels to monitor.
  • Integrating channel search results into marketing or analytics pipelines.

For example, you could search for channels about "cooking tutorials" ordered by relevance or view count, limiting the number of results returned.

Properties

Name Meaning
Search Query The text string used to search for channels (e.g., "technology reviews").
Search Type The type of content to search. For this operation, it should be set to Channel.
Order The order in which search results are returned. Options: Relevance, Date, Rating, Title, Video Count, View Count. Determines how results are sorted.
Max Results Maximum number of search results to return. Minimum 1, maximum 50. Defaults to 25.
Page Token A token to specify the page of results to retrieve for pagination purposes.

Output

The output is a JSON array where each item corresponds to a search result matching the channel criteria. Each JSON object contains detailed information about a YouTube channel as returned by the YouTube Data API v3 search endpoint. This typically includes channel ID, title, description, thumbnails, and other metadata.

No binary data is output by this operation.

Dependencies

  • Requires an active subscription and valid API key credential for the external N8N Tools API service that acts as a proxy or enhancer for YouTube API calls.
  • Requires OAuth2 credentials or API key credentials configured for YouTube API access within n8n.
  • The node internally uses helper classes to build and send requests to the YouTube Data API v3 via the N8N Tools API.

Troubleshooting

  • Invalid subscription or API key error: If you receive errors indicating invalid subscription or API key, verify that your API key credential is correct and has the necessary permissions.
  • Quota exceeded or rate limit errors: YouTube API enforces quotas; if you hit limits, consider reducing max results or optimizing queries.
  • Empty or no results: Ensure the search query is correctly specified and that the search type is set to "Channel" for this operation.
  • Pagination issues: Use the Page Token property correctly to navigate through pages of results.

Links and References

Discussion