Y
YouTube Analytics API
YouTube channel and video analytics
Deep YouTube analytics: channel stats, video performance, trending content, keyword research, and competitor analysis.
Scraping & Data IntelligenceLive Dashboard5 endpoints
Endpoints
GET
/channel/{id}Channel analytics and stats
GET
/video/{id}Video metrics and details
GET
/searchSearch YouTube with analytics
GET
/trendingTrending videos by country
Use Cases
Creator analytics
Content strategy
Competitor tracking
Trend analysis
Ad planning
Quick Start
quickstart.js
const response = await fetch(
"https://youtube-analytics-by-helix-api.p.rapidapi.com/channel/{id}",
{
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "youtube-analytics-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);