Install
openclaw skills install @tonywangcn/social-media-researchResearches 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.
openclaw skills install @tonywangcn/social-media-researchLook 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.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.Pick the platform, then the job:
/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./instagram/reels/{id}, /tiktok/posts,
/threads/profile/{username}/posts, /bluesky/author-feed,
/x/profile/{username}/posts, /pinterest/user/{username}/pins,
/reddit/subreddit/{subreddit}/posts./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})./tiktok/search, /tiktok/search_hashtag,
/bluesky/search-actors, /pinterest/search, /reddit/search,
/facebook/marketplace/search (listings, not social posts)./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.
# 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 '.'
See reference/endpoints.md for every Instagram,
TikTok, Threads, Bluesky, X, Pinterest, LinkedIn, Facebook, and Reddit
endpoint this skill uses.
/reddit/search, /tiktok/search, and
/pinterest/search for the same brand/product name, aggregate volume and
sentiment cues from captions/comments./tiktok/trending + /bluesky/trending-topics +
/reddit/trends for a same-day cross-platform snapshot.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.reference/endpoints.md before assuming an endpoint exists.