Threads
Extract profiles, posts, and search results
Threads
Extract profiles, posts, and search results. 5 endpoints available.
Base URL: /v1/threads/...
Getting Started
1. Fetch a profile
curl "https://socialcrawl.dev/v1/threads/profile?handle=zuck" \
-H "x-api-key: sc_your_api_key_here"2. Fetch their content
curl "https://socialcrawl.dev/v1/threads/user/posts?handle=zuck" \
-H "x-api-key: sc_your_api_key_here"3. Read computed fields
Every response includes computed fields: engagement_rate, language, content_category, and estimated_reach.
Endpoints
| Endpoint | Path | Credit Tier |
|---|---|---|
| Get Threads user profile | /v1/threads/profile | standard (1cr) |
| List Threads user posts | /v1/threads/user/posts | standard (1cr) |
| Get Threads post details | /v1/threads/post | standard (1cr) |
| Search Threads posts | /v1/threads/search | standard (1cr) |
| Search Threads users | /v1/threads/search/users | standard (1cr) |
Notes
- All endpoints use
GETmethod with query parameters - Authentication via
x-api-keyheader - Responses follow the unified SocialCrawl schema
