Social Media
Fifteen scrapers for the biggest social platforms — public profiles, posts, hashtags, events, and feeds. We handle the anti-bot, you get clean JSON.
Overview
Social-media scrapers cover the public surfaces of the four platforms most teams pull from: Facebook, Instagram, TikTok, and LinkedIn. Each scraper targets one page-type — profile, post, hashtag, event, feed — so the JSON shape stays predictable even when the underlying app refactors its UI. We handle the anti-bot, the rate limiting, and the residential routing; you receive the parsed structure.
Common use cases:
- Brand monitoring: poll
instagram-profile/tiktok-profilefor follower count, posting cadence, and engagement trends across competitors and influencers. - Influencer discovery: walk
instagram-hashtagorinstagram-reels-audioto find creators using a given hashtag or trending sound. - Recruiting / sales prospecting: enrich a CRM with
linkedin-profileandlinkedin-companydata — title, headcount, headline, current role. - Event marketing: pull
facebook-eventattendance and timing for tracking event saturation in a city or industry vertical. - Trend research: feed
tiktok-productandinstagram-postinto trend-detection pipelines for marketing or product research.
Only public surfaces are supported — login-walled or private content is out of scope and not something the scrapers attempt. Where a platform has multiple post types (Instagram has profile + post + reel + hashtag, for example), each gets its own scraper so you don't pay for fields you don't need.
Public Facebook surfaces — pages, profiles, groups, hashtags, events. Useful for brand monitoring, event marketing, and discovery in regions where Facebook has higher share than Instagram (most of EMEA, parts of LATAM).
- Facebook Page — public Facebook page (name, category, description, posts).
- Facebook Profile — public Facebook profile.
- Facebook Group — public Facebook group.
- Facebook Hashtag — posts under a Facebook hashtag.
- Facebook Event — public Facebook event.
Five Instagram scrapers covering the surfaces most relevant to influencer marketing and trend research — profiles, individual posts and reels, hashtag feeds, and reels-audio for music/sound-driven trend tracking.
- Instagram Profile — public Instagram profile.
- Instagram Post — single Instagram post.
- Instagram Reel — single Instagram Reel.
- Instagram Hashtag — posts under an Instagram hashtag.
- Instagram Reels Audio — reels using a given audio track.
TikTok
TikTok profiles and individual video/product posts. Pair with tiktok-shop in the E-Commerce category if you're tracking creator commerce.
- TikTok Profile — public TikTok profile.
- TikTok Product — single TikTok video / product post.
Public LinkedIn — profiles, company pages, and feed posts. The standard fit for B2B prospecting, recruiting, and competitive headcount tracking.
- LinkedIn Profile — public LinkedIn profile.
- LinkedIn Company — public LinkedIn company page.
- LinkedIn Feed — LinkedIn feed posts.
Example call
Below: a single instagram-profile call. The scraper returns the public profile snapshot — username, bio, follower/following counts, post count, verification flag, and avatar URL.
curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
--data-urlencode 'url=https://www.instagram.com/apple/' \
--data-urlencode 'scraper=instagram-profile' -GSample response
{
"username": "apple",
"full_name": "Apple",
"biography": "Welcome to @apple. The latest creativity going on around us.",
"followers_count": 33800000,
"following_count": 9,
"posts_count": 1284,
"is_verified": true,
"is_private": false,
"profile_pic_url": "https://scontent.cdninstagram.com/...jpg"
}Full reference (parameters, all 4 SDK languages, edge cases):Instagram Profile — full reference

