Install
openclaw skills install @tonywangcn/threads-researchResearches 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.
openclaw skills install @tonywangcn/threads-researchLook 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.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./threads/profile/{username} for public profile metadata
(bio, counts)./threads/profile/{username}/posts for a profile's
public posts, paginated via an opaque cursor./threads/post/{username}/{code} for a single post's
text, author, canonical URL, and preview image./threads/post/{username}/{code}/replies for the
public replies to that post./threads/search for the public first page of Threads
search results for a query.Full endpoint list, methods, and params: reference/endpoints.md.
# 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 '.'
See reference/endpoints.md for every Threads
endpoint this skill uses.
/threads/profile/{username} for bio and follower
counts, then /threads/profile/{username}/posts to see recent activity./threads/post/{username}/{code} for a specific
post's text, then /threads/post/{username}/{code}/replies to read what
people are saying about it./threads/search for a brand or topic name to gauge
how much public conversation is happening on Threads right now.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it./threads/search returns only the
logged-out first page of results; there's no way to page deeper./threads/post/{username}/{code}/replies
will flag when Threads reports more replies exist but can withhold a
usable cursor to fetch them.cursor from the
previous /threads/profile/{username}/posts response to walk beyond the
first page.