Endpoint Playground
Test Crawlora's Retrieve Threads post replies API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/threads/post/<username>/<code>/replies" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | Threads username | |
| code (path) | string | Yes | Threads post code |
{
"code": 200,
"msg": "OK",
"data": {
"username": "zuck",
"code": "ABC123",
"items": [
{
"id": "456",
"code": "DEF456",
"url": "https://www.threads.com/@someone/post/DEF456",
"text": "Example reply",
"author": {
"username": "someone"
},
"is_reply": true
}
],
"has_more": true,
"pagination_limited": true
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the public replies currently exposed to logged-out visitors. The response identifies when Threads reports additional replies but withholds a usable continuation cursor.
{
"code": 200,
"msg": "OK",
"data": {
"username": "zuck",
"code": "ABC123",
"items": [
{
"id": "456",
"code": "DEF456",
"url": "https://www.threads.com/@someone/post/DEF456",
"text": "Example reply",
"author": {
"username": "someone"
},
"is_reply": true
}
],
"has_more": true,
"pagination_limited": true
}
}curl "https://api.crawlora.net/api/v1/threads/post/<username>/<code>/replies" \
-H "x-api-key: $CRAWLORA_API_KEY"