OrbTop

Social Blade Scraper

SOCIAL MEDIAFOR CREATORS

Social Blade Scraper

Scrape Social Blade's creator leaderboard pages for YouTube, TikTok, Instagram, Twitch, Twitter, and more. Extracts rank, username, subscriber/follower counts, video views, and 30-day subscriber growth for the top creators on each platform.

What it does

Social Blade publishes ranked lists of the top creators by subscriber count for every major social platform. This actor fetches those leaderboard pages, waits for the JavaScript-rendered table to populate, and extracts structured data for each creator row.

  • Supports 8 platforms: YouTube, TikTok, Instagram, Twitter, Twitch, Dailymotion, Trovo, Kick
  • Offset-based pagination — each page returns 100 creators; request up to 1,000 total
  • Clears Cloudflare's JS challenge via a real Chromium browser with residential proxy

Input

Field Type Required Description
platform string Yes Platform to scrape (youtube, tiktok, instagram, twitter, twitch, dailymotion, trovo, kick)
topCount integer No Number of top creators to retrieve (1–1000, default 100)
maxItems integer Yes Maximum number of records to output

Example input:

{
  "platform": "youtube",
  "topCount": 100,
  "maxItems": 100
}

Output

Each record in the dataset represents one creator row from the leaderboard table.

Field Type Description
rank string Rank position (e.g. "1st")
platform string Platform scraped (e.g. "youtube")
username string Creator username or channel name
profile_url string Social Blade profile URL for the creator
subscribers string Total subscriber or follower count
video_views string Total video or post views
monthly_subs_change string 30-day subscriber/follower change
scraped_at string ISO 8601 timestamp of when the record was scraped

Example output record:

{
  "rank": "1st",
  "platform": "youtube",
  "username": "MrBeast",
  "profile_url": "https://socialblade.com/youtube/handle/mrbeast",
  "subscribers": "497M",
  "video_views": "128.15B",
  "monthly_subs_change": "985",
  "scraped_at": "2026-06-08T10:00:00.000Z"
}

Notes

  • Social Blade's leaderboard pages are JavaScript-rendered and protected by Cloudflare. This actor uses a real Chromium browser with residential proxy to reliably load the data.
  • Subscriber counts and view counts are returned as formatted strings (e.g. "497M", "128.15B") matching what Social Blade displays — not raw integers.
  • The monthly_subs_change field shows the net change in subscribers over the last 30 days.
  • Not all platforms expose the same statistics; unavailable fields will be empty strings.