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
文档
threads-research
试用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.
它能做什么
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.
技能文档
Threads research
Look up public Threads profiles, posts, and replies, and run keyword search — 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 on Threads?"
- "Pull this Threads post's text and replies."
- "What has posted recently on Threads?"
- "Search Threads for posts about ."
- Competitor social-listening or brand-mention monitoring on Threads.
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
- Profile —
/threads/profile/{username}for public profile metadata (bio, counts). - Profile posts —
/threads/profile/{username}/postsfor a profile's public posts, paginated via an opaquecursor. - One post —
/threads/post/{username}/{code}for a single post's text, author, canonical URL, and preview image. - Post replies —
/threads/post/{username}/{code}/repliesfor the public replies to that post. - Search —
/threads/searchfor the public first page of Threads search results for a query.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Profile + posts:
scripts/crawlora.sh /threads/profile/zuck | jq '.'
scripts/crawlora.sh /threads/profile/zuck/posts | jq '.'
# Post + replies:
scripts/crawlora.sh /threads/post/zuck/C1abc2DEfGh | jq '.'
scripts/crawlora.sh /threads/post/zuck/C1abc2DEfGh/replies | jq '.'
# Search:
scripts/crawlora.sh /threads/search q="web scraping" | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/threads/profile/zuck" | jq '.'
Endpoint reference
See reference/endpoints.md for every Threads
endpoint this skill uses.
Examples
- Profile snapshot:
/threads/profile/{username}for bio and follower counts, then/threads/profile/{username}/poststo see recent activity. - Post deep-dive:
/threads/post/{username}/{code}for a specific post's text, then/threads/post/{username}/{code}/repliesto read what people are saying about it. - Keyword sweep:
/threads/searchfor a brand or topic name to gauge how much public conversation is happening on Threads right now.
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 Threads' terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Search has no continuation cursor —
/threads/searchreturns only the logged-out first page of results; there's no way to page deeper. - Reply pagination is opaque and sometimes absent —
/threads/post/{username}/{code}/replieswill flag when Threads reports more replies exist but can withhold a usable cursor to fetch them. - Profile posts paginate via cursor — pass the
cursorfrom the previous/threads/profile/{username}/postsresponse to walk beyond the first page.
相关技能
Searches Threads posts by keyword or hashtag and returns matching posts with engagement metrics, extracted from SSR-embedded JSON. Use when user asks to search Threads posts, find Threads content by topic, scrape Threads search results, collect Threads posts about a keyword, monitor Threads hashtag
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.
Discover and analyze Threads users and content through the KeyAPI REST API using live official docs. Use for user profiles, posts, reposts, replies, post details, comments, and keyword search across top content, recent content, and profiles.
Fetches public posts from a Threads user's profile page, extracting post text, engagement metrics, and media info from SSR-embedded JSON. Use when user asks to scrape Threads posts, get someone's Threads feed, pull posts from a Threads account, collect Threads content by username, download Threads u
Collect and analyze public Threads data