Endpoint Playground
Test Crawlora's Search Threads 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query (1-100 characters) |
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"items": [
{
"id": "123",
"code": "ABC123",
"url": "https://www.threads.com/@openai/post/ABC123",
"text": "Example result",
"author": {
"username": "openai"
}
}
],
"has_more": false
}
}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 first page of Threads search results for a query. Logged-out search does not expose a continuation cursor.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"items": [
{
"id": "123",
"code": "ABC123",
"url": "https://www.threads.com/@openai/post/ABC123",
"text": "Example result",
"author": {
"username": "openai"
}
}
],
"has_more": false
}
}curl "https://api.crawlora.net/api/v1/threads/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"