Endpoint Playground
Test Crawlora's Search Trustpilot categories 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/trustpilot/categories/search?q=openai&country=US&locale=en-US&size=3" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | openai | Search query |
| country | string | No | US | Two-letter country code; defaults to US |
| locale | string | No | en-US | Locale in ll-CC format; defaults to en-US |
| size | integer | No | 3 | Maximum number of categories; defaults to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software",
"country": "US",
"locale": "en-US",
"size": 3,
"categories": []
}
}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 normalized category search results from Trustpilot's JSON category search API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software",
"country": "US",
"locale": "en-US",
"size": 3,
"categories": []
}
}curl "https://api.crawlora.net/api/v1/trustpilot/categories/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"