threads-researchlisted
Install: claude install-skill Crawlora-org/crawlora-skills
# 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 <handle>'s profile / follower count on Threads?"
- "Pull this Threads post's text and replies."
- "What has <handle> posted recently on Threads?"
- "Search Threads for posts about <topic>."
- 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](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).
- `export CRAWLORA_API_KEY=sk_your_key_here`
- All requests: `x-api-key: $CRAWLORA_API_KEY` against
`https://api.crawlora.net/api/v1`. Missing/invalid key → `401`.
## How it works
1. **Profile** — `/threads/profile/{username}` for public profile metadata
(bio, counts).
2. **Profile posts** — `/threads/profile/{username}/posts` for a profile's
public posts, paginated via an opaque `cursor`.
3. **One post** — `/threads/post/{username}/{code}` for a single post's
text, author, canonical URL, and preview image.
4. **Post replies** — `/threads/post/{username}/{code}/replies` for the
public replies to that post.
5. **Search** — `/threads/search` for the public first page of Threads
search results for a query.
Full endpoint list, methods, and params: [`reference/endpoints.md`](reference/end