Researches public Threads (Meta) profiles, posts, replies, and search results via the Crawlora API, returning clean JSON. Use when the user wants a Threads profile's stats, a post's content/replies, a profile's recent posts, or a keyword search on Threads — instead of scraping the app.
编程
social-media-research
试用Researches social-media profiles, posts, and engagement across Instagram, TikTok, Threads, Bluesky, X, Pinterest, LinkedIn, Facebook, and Reddit via the Crawlora API, returning clean JSON. Use when the user wants a public profile's stats, a post's content/engagement, a platform search, trending topics, or social listening/competitor research — instead of scraping each app.
它能做什么
Researches social-media profiles, posts, and engagement across Instagram, TikTok, Threads, Bluesky, X, Pinterest, LinkedIn, Facebook, and Reddit via the Crawlora API, returning clean JSON. Use when the user wants a public profile's stats, a post's content/engagement, a platform search, trending topics, or social listening/competitor research — instead of scraping each app.
技能文档
Social media research
Look up public profiles, posts, and engagement, run keyword/hashtag search, and track trending topics across nine social platforms — all as normalized JSON from the Crawlora API, no app scraping or unofficial client libraries.
When to use this skill
- "What's 's profile / follower count / recent posts on ?"
- "Pull this post's engagement (likes, comments, shares)."
- "Search for posts about ."
- "What's trending on right now?"
- Competitor social-listening, influencer research, or brand-mention monitoring.
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
Pick the platform, then the job:
- Profile —
/instagram/profile/{username},/tiktok/profile/{handler},/threads/profile/{username},/bluesky/profile,/x/profile/{username},/pinterest/user/{username},/linkedin/company/{id},/facebook/{page},/reddit/user/{username}/posts. - Posts / feed —
/instagram/reels/{id},/tiktok/posts,/threads/profile/{username}/posts,/bluesky/author-feed,/x/profile/{username}/posts,/pinterest/user/{username}/pins,/reddit/subreddit/{subreddit}/posts. - One post/pin/pin detail —
/instagram/post/{id}/{post_id},/tiktok/post/{id},/threads/post/{username}/{code}(+/replies),/bluesky/post-thread,/x/post/{id},/pinterest/pin/{id},/reddit/post/{id}(+/reddit/comments/{id}). - Search & discovery —
/tiktok/search,/tiktok/search_hashtag,/bluesky/search-actors,/pinterest/search,/reddit/search,/facebook/marketplace/search(listings, not social posts). - Trending —
/tiktok/trending,/tiktok/creative-center/hashtags,/bluesky/trending-topics,/reddit/trends,/reddit/subreddits/posts(multi-subreddit hot feed).
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Profile + posts:
scripts/crawlora.sh /tiktok/profile/nasa | jq '.'
scripts/crawlora.sh /reddit/user/spez/posts | jq '.'
# Search:
scripts/crawlora.sh /tiktok/search keyword="ai agents" | jq '.'
scripts/crawlora.sh /reddit/search q="web scraping" | jq '.'
# Trending:
scripts/crawlora.sh /tiktok/trending | jq '.'
scripts/crawlora.sh /bluesky/trending-topics | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/reddit/subreddit/programming/posts" | jq '.'
Endpoint reference
See reference/endpoints.md for every Instagram,
TikTok, Threads, Bluesky, X, Pinterest, LinkedIn, Facebook, and Reddit
endpoint this skill uses.
Examples
- Competitor social audit: pull profile + recent posts on each platform a competitor is active on, compare follower counts and post cadence.
- Brand-mention sweep:
/reddit/search,/tiktok/search, and/pinterest/searchfor the same brand/product name, aggregate volume and sentiment cues from captions/comments. - Influencer vetting: profile + recent posts to check follower count, engagement rate (likes/comments per post), and posting consistency before a partnership.
- Trending-topic scan:
/tiktok/trending+/bluesky/trending-topics+/reddit/trendsfor a same-day cross-platform snapshot.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public profiles/posts; no login, no private content. Respect each platform's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Coverage varies by platform: X and Instagram expose a narrower public
surface (profile + recent posts) than TikTok or Reddit (full search +
trending); check
reference/endpoints.mdbefore assuming an endpoint exists. - List endpoints are cursor- or page-paginated — follow the returned cursor to walk beyond the first page.
相关技能
Researches Instagram profiles, posts, and Reels via the Crawlora API, returning clean JSON. Use when the user wants a public Instagram profile's stats, a specific post's media/engagement, or a user's Reels feed — instead of scraping the app.
Discover what's trending/going viral across TikTok, Instagram, X, Facebook, Pinterest and Reddit, and schedule or publish posts to the user's own connected social accounts — powered by the ViralHunt.io API. Use this whenever the user wants to find viral or trending content in a niche, research what's performing on social right now, or draft/schedule/publish social posts across networks.
Discovers Threads user accounts by keyword, extracting profile data including username, display name, verification status, biography, and follower count. Use when user asks to find Threads accounts, search Threads profiles, discover Threads users by keyword, look up Threads creators, find influencer
Researches TikTok profiles, videos, hashtags, search, trending content, and Creative Center ads intelligence via the Crawlora API, returning clean JSON. Use when the user wants a TikTok creator's profile/videos, hashtag or keyword search, trending hashtags/videos, or competitor ad analysis from TikTok Top Ads — instead of scraping TikTok or the Creative Center directly.
Searches Google to discover social media profiles associated with a person, brand, or username; returns platform name, profile URL, username, bio snippet, an...