YouTube Competitor Channel Monitor
Pricing
from $3.20 / 1,000 actionable insights
Go to Apify Store
YouTube Competitor Channel Monitor
Turn YouTube video or channel records into ranked, evidence-backed YouTube commercial signals.
YouTube Competitor Channel Monitor
Pricing
from $3.20 / 1,000 actionable insights
Turn YouTube video or channel records into ranked, evidence-backed YouTube commercial signals.
You can access the YouTube Competitor Channel Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "records": [{10 "videoId": "yt-demo-001",11 "channelId": "UC-demo",12 "title": "Best travel chargers tested",13 "channelName": "Carry Smart",14 "viewCount": 618000,15 "likeCount": 24100,16 "commentCount": 1830,17 "subscriberCount": 92000,18 "description": "Business inquiries and sponsors welcome",19 "observedAt": "2026-08-02T10:00:00Z",20 "productWorkflow": "youtube-competitor-channel-monitor",21 }],22 "previousRecords": [{23 "videoId": "yt-demo-001",24 "channelId": "UC-demo",25 "title": "Best travel chargers tested",26 "channelName": "Carry Smart",27 "viewCount": 114000,28 "likeCount": 5100,29 "commentCount": 340,30 "subscriberCount": 83500,31 "description": "Weekly carry reviews",32 "observedAt": "2026-07-26T10:00:00Z",33 "productWorkflow": "youtube-competitor-channel-monitor",34 }],35}36
37# Run the Actor and wait for it to finish38run = client.actor("night111/youtube-competitor-channel-monitor").call(run_input=run_input)39
40# Fetch and print Actor results from the run's dataset (if there are any)41print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")42for item in client.dataset(run.default_dataset_id).iterate_items():43 print(item)44
45# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use YouTube Competitor Channel Monitor API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: