S
Social Media Analytics API
Social media insights across platforms
Get public profile stats and post analytics for Instagram, TikTok, and Twitter. Follower counts, engagement rates, and content metrics.
Scraping & Data IntelligenceLive Dashboard3 endpoints
Endpoints
GET
/profile/{platform}/{username}Get profile stats
GET
/posts/{platform}/{username}Get recent posts with metrics
Use Cases
Influencer marketing
Brand monitoring
Competitor analysis
Social listening
Campaign tracking
Quick Start
quickstart.js
const response = await fetch(
"https://social-analytics-by-helix-api.p.rapidapi.com/profile/{platform}/{username}",
{
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "social-analytics-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);