Find YouTube Channels by Topic, Language, and Country A developer has shared a reproducible method for discovering YouTube channels by topic, language, and country using the Apify platform. The approach separates market dimensions and uses the 'youtube-creator-lead-finder' actor to generate a qualified shortlist, with deduplication by channel ID and transparent metadata for language and country confidence. Most tools that find YouTube channels by topic treat the search as one keyword and one result page. That works for lookup. It misses how creator discovery behaves across languages, countries, and niche vocabulary. “AI automation” in English, “automatisation IA” in French, and “automatización con IA” in Spanish do not return the same creator pool. Country filters add another problem: a creator’s language, search region, declared country, and inferred geography are not interchangeable. Here is a reproducible way to discover channels without building a seed list first. Write the requested market as separate dimensions: niches = "AI automation", "B2B SaaS" languages = "en", "fr" countries = "US", "CA", "GB", "FR" This is more useful than concatenating everything into one long search phrase. It lets the discovery layer try multiple relevant combinations while keeping a global cap on search calls. The channel URLs you already know can still be included as optional seeds. They should not define the whole market. A French-language campaign is not necessarily a France campaign. French-speaking creators can publish from Canada, Belgium, Switzerland, Morocco, Senegal, or anywhere else. If language matters and location does not, use: run input = { "preset": "qualified shortlist", "niches": "AI agents", "business automation" , "languages": "fr" , "countries": , "worldwideLanguageMode": True, "maxChannels": 10, "videosAnalyzedPerChannel": 10, "maximumSearchCalls": 12, } This guides discovery by language without pretending that every returned creator lives in one country. pip install apify-client export APIFY API TOKEN="..." python import os from apify client import ApifyClient client = ApifyClient os.environ "APIFY API TOKEN" run input = { "preset": "qualified shortlist", "searchQueries": "AI automation tutorials", "B2B SaaS growth", , "niches": "AI automation", "B2B SaaS" , "languages": "en", "fr" , "countries": "US", "CA", "GB", "FR" , "worldwideLanguageMode": False, "excludedKeywords": "compilation", "reupload" , "minSubscribers": 1 000, "maxSubscribers": 500 000, "minVideosPerMonth": 1, "lastUploadWithinDays": 90, "maxChannels": 10, "videosAnalyzedPerChannel": 10, "maximumSearchCalls": 16, } run = client.actor "kazkn/youtube-creator-lead-finder" .call run input=run input, items = client.dataset run "defaultDatasetId" .list items .items The output is deduplicated by stable channelId inside the run. That matters because the same creator can match several topics, languages, country hints, or search phrases. A useful discovery row should explain why the channel entered the shortlist. for item in items: print { "channel": item "channelName" , "matched queries": item.get "matchedQueries", , "matched languages": item.get "matchedLanguages", , "matched countries": item.get "matchedCountries", , "primary language": item.get "primaryLanguage" , "declared country": item.get "declaredCountry" , "inferred countries": item.get "inferredCountries", , "warnings": item.get "warnings", , } The matched fields describe the search request. They are not automatically confirmed creator attributes. When public channel metadata includes a country, keep it as declaredCountry . When geography is inferred from public signals, keep it in inferredCountries with countryConfidence . Never overwrite the declared field with a guess. If no defensible location signal exists, leave it unknown. The same rule applies to language. Keep the primary language, detected languages, and confidence visible instead of turning a search hint into a fact. Topic relevance alone can return inactive or commercially weak channels. The second pass should check: This two-pass design keeps discovery broad enough to find unfamiliar creators while spending enrichment work only on plausible candidates. Multi-language and multi-country matrices can expand quickly. Use maximumSearchCalls as a global cap, start with 5–10 output channels, and widen one dimension at a time. If a search returns zero rows, inspect the exclusions and warnings. Requiring a narrow country, high recent views, frequent uploads, a small subscriber band, one format, and a public contact simultaneously can correctly eliminate every candidate. The public YouTube Channel Finder by Niche Task starts without mandatory channel URLs and opens with a bounded input you can edit: Find YouTube channels by topic and market https://apify.com/kazkn/youtube-creator-lead-finder/examples/youtube-channel-finder-by-niche?utm source=devto&utm medium=organic content&utm campaign=youtube creator finder web wave2 20260825&utm content=topic language country For the full input and output contract, see YouTube Creator Lead Finder https://apify.com/kazkn/youtube-creator-lead-finder?utm source=devto&utm medium=organic content&utm campaign=youtube creator finder web wave2 20260825&utm content=topic language country actor . The goal is not to search more keywords. It is to keep discovery broad, qualification explicit, and every uncertain attribute honest.