/threads/post/{username}/{code}apiKey8 credits/requestRetrieve a public Threads post
Returns the public text, author, canonical URL, and preview image for a Threads post.
Required params: username:path, code:path
API Reference
Use Crawlora's Threads API endpoints to extract supported public Threads data as structured JSON. This documentation covers 5 active endpoints including Retrieve a public Threads post, Retrieve public replies to a Threads post, Retrieve a public Threads profile, Retrieve public posts from a Threads profile, and related APIs. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and agent-native workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as username, code, q, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.
Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.
curl -X GET "https://api.crawlora.net/api/v1/threads/search?q=coffee" \
-H "x-api-key: $CRAWLORA_API_KEY"These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.
/threads/post/{username}/{code}apiKey8 credits/requestReturns the public text, author, canonical URL, and preview image for a Threads post.
Required params: username:path, code:path
/threads/post/{username}/{code}/repliesapiKey12 credits/requestReturns the public replies currently exposed to logged-out visitors. The response identifies when Threads reports additional replies but withholds a usable continuation cursor.
Required params: username:path, code:path
/threads/profile/{username}apiKey8 credits/requestReturns public profile metadata for a Threads username, including the visible biography and counts.
Required params: username:path
/threads/profile/{username}/postsapiKey12 credits/requestReturns public profile posts with an opaque continuation cursor when more posts are available.
Required params: username:path
/threads/searchapiKey10 credits/requestReturns the public first page of Threads search results for a query. Logged-out search does not expose a continuation cursor.
Required params: q:query
| Endpoint | API path | Method | Credits | Required params | Docs | Playground |
|---|---|---|---|---|---|---|
| Retrieve a public Threads post | /threads/post/{username}/{code} | GET | 8 credits/request | username:path, code:path | View docs | Try endpoint |
| Retrieve public replies to a Threads post | /threads/post/{username}/{code}/replies | GET | 12 credits/request | username:path, code:path | View docs | Try endpoint |
| Retrieve a public Threads profile | /threads/profile/{username} | GET | 8 credits/request | username:path | View docs | Try endpoint |
| Retrieve public posts from a Threads profile | /threads/profile/{username}/posts | GET | 12 credits/request | username:path | View docs | Try endpoint |
| Search public Threads posts | /threads/search | GET | 10 credits/request | q:query | View docs | Try endpoint |