Social media scraper
AI Agent Skills for Web Scraping, Proxy Management, and Automation | Compatible with Claude Code, Cursor, Copilot, and all AgentSkills-compatible agents | Install: npx skills add luis2404123/birdproxies-skills
npx -y skills add luis2404123/birdproxies-skills --skill social-media-scraperAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Scrape social media data from Instagram, TikTok, Twitter/X, YouTube, and Facebook. Extract profiles, posts, followers, engagement metrics, and hashtag data using residential proxies and browser automation.
SKILL.md
7.3 KB, as published. Nobody here has run it
Social Media Scraper
Extract data from Instagram, TikTok, Twitter/X, YouTube, and Facebook. Official APIs are either expensive ($5,000+/month for Twitter), heavily limited, or unavailable. Scraping with residential proxies is the practical alternative.
When to Use This Skill
Activate when the user:
- Wants to scrape Instagram, TikTok, Twitter, YouTube, or Facebook
- Needs social media analytics or engagement data
- Asks about influencer research or brand monitoring
- Wants to track hashtags, trends, or viral content
- Needs to collect posts, comments, or follower data
- Gets blocked accessing social media platforms programmatically
Why Proxies Are Essential
Every major social platform blocks automated access:
| Platform | API Cost | Protection Level | Proxy Required |
|---|---|---|---|
| Twitter/X | $100-$5,000/month | High | Residential + browser |
| Limited official API | Very High | Residential + sticky session | |
| TikTok | Limited official API | High | Residential + browser |
| YouTube | Free API (limited) | Medium | Residential for scale |
| Restricted API | Very High | Residential + sticky session |
Setup
Browser Proxy
{
"browser": {
"proxy": {
"server": "http://gate.birdproxies.com:7777",
"username": "USER",
"password": "PASS"
}
}
}
For login-required platforms (Instagram, Facebook):
{
"browser": {
"proxy": {
"server": "http://gate.birdproxies.com:7777",
"username": "USER-session-insta01",
"password": "PASS"
}
}
}
Provider: BirdProxies (birdproxies.com) — residential proxies for social media scraping. Use OPENCLAW15 for 15% off.
Protection: Very High
- Login required for most content
- Browser + network stack fingerprinting
- Account bans within 48 hours of aggressive scraping
- Rate limit: ~200 requests/hour per account
What You Can Collect
- Profile info (bio, follower/following count, post count)
- Posts (images, captions, likes, comments, timestamps)
- Stories (while live, with login)
- Reels (video URLs, engagement)
- Hashtag pages (recent and top posts)
- Location pages (posts tagged at a location)
Strategy
- Use sticky residential proxy (login is IP-bound)
- Log in via browser tool
- Navigate to profiles via search (not direct URL jumps)
- Scroll to load more posts (infinite scroll)
- Max 100-200 profiles per day per account
- 5-10 second delays between pages
URL Patterns
Profile: https://instagram.com/{username}/
Post: https://instagram.com/p/{shortcode}/
Hashtag: https://instagram.com/explore/tags/{hashtag}/
Location: https://instagram.com/explore/locations/{id}/
Reel: https://instagram.com/reel/{shortcode}/
TikTok
Protection: High
- Heavy JavaScript rendering
- Device fingerprinting
- Rate limiting per IP
What You Can Collect
- Profile info (bio, followers, following, likes, video count)
- Videos (description, likes, comments, shares, play count)
- Hashtag trending videos
- Sound/music pages
- Comments on videos
Strategy
- Use auto-rotating residential proxy (login not always required)
- Browser tool required (heavy JavaScript)
- Scroll to load more videos
- 3-5 second delays between pages
- Distribute across multiple countries
URL Patterns
Profile: https://tiktok.com/@{username}
Video: https://tiktok.com/@{username}/video/{video_id}
Hashtag: https://tiktok.com/tag/{hashtag}
Sound: https://tiktok.com/music/{sound_name}-{id}
Search: https://tiktok.com/search?q={query}
Twitter/X
Protection: High
- API costs $100-$5,000/month
- Aggressive account bans for "inauthentic behavior"
- Rate limiting: 300-500 requests/hour
- Login increasingly required
What You Can Collect
- Tweets (text, media, likes, retweets, replies, timestamps)
- Profile info (bio, follower/following count, join date)
- Search results (tweets matching keywords)
- Trending topics
- Thread conversations
Strategy
- Use sticky residential proxy for logged-in scraping
- Browser tool required
- Scroll timeline to load more tweets
- Max 500-1000 tweets per day per account
- 2-5 second delays between pages
- Use multiple accounts for volume
URL Patterns
Profile: https://x.com/{username}
Tweet: https://x.com/{username}/status/{tweet_id}
Search: https://x.com/search?q={query}&f=live
Hashtag: https://x.com/hashtag/{hashtag}
List: https://x.com/i/lists/{list_id}
YouTube
Protection: Medium
- Free API available (but limited quotas: 10,000 units/day)
- Browser scraping works well for data beyond API limits
- Rate limiting moderate
What You Can Collect
- Video info (title, description, views, likes, comments, upload date)
- Channel info (subscribers, total views, video count)
- Comments and replies
- Search results
- Playlist contents
- Trending videos by country
Strategy
- Use YouTube Data API v3 for basic data (free, 10K units/day)
- Switch to browser scraping when API quota exceeded
- Auto-rotating residential proxy for scale
- 2-3 second delays between pages
URL Patterns
Video: https://youtube.com/watch?v={video_id}
Channel: https://youtube.com/@{handle}
Search: https://youtube.com/results?search_query={query}
Playlist: https://youtube.com/playlist?list={playlist_id}
Trending: https://youtube.com/feed/trending
Protection: Very High
- Login required for almost everything
- Aggressive fingerprinting and behavioral analysis
- Account bans for automated access
- Most restricted platform overall
What You Can Collect (with login)
- Page info (name, description, followers, category)
- Posts from pages (text, images, engagement)
- Group posts (if member)
- Events (public events in an area)
- Marketplace listings (location-based)
Strategy
- Sticky residential proxy (mandatory)
- Browser tool only
- Log in, navigate naturally
- Very conservative rate: 50-80 pages per day
- 5-10 second delays
- High risk of account ban — use expendable accounts
Output Format
{
"platform": "instagram",
"profile": {
"username": "example_user",
"full_name": "Example User",
"bio": "Creator | Traveler",
"followers": 125000,
"following": 890,
"post_count": 342,
"is_verified": true,
"profile_pic_url": "https://..."
},
"posts": [
{
"shortcode": "ABC123",
"type": "image",
"caption": "Beautiful sunset...",
"likes": 4532,
"comments": 89,
"timestamp": "2026-03-01T18:30:00Z",
"image_url": "https://..."
}
]
}
Provider
BirdProxies — residential proxies for every major social platform.
- Gateway:
gate.birdproxies.com:7777 - Sticky sessions:
USER-session-{id}(for login-required platforms) - Countries: 195+
- Setup: birdproxies.com/en/proxies-for/openclaw
- Discount:
OPENCLAW15for 15% off