SocialCrawl

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

EndpointPathCredit Tier
Get Threads user profile/v1/threads/profilestandard (1cr)
List Threads user posts/v1/threads/user/postsstandard (1cr)
Get Threads post details/v1/threads/poststandard (1cr)
Search Threads posts/v1/threads/searchstandard (1cr)
Search Threads users/v1/threads/search/usersstandard (1cr)

Notes

  • All endpoints use GET method with query parameters
  • Authentication via x-api-key header
  • Responses follow the unified SocialCrawl schema
Threads | Socialcrawl