Endpoint Playground
Test Crawlora's Search Trustpilot business units 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/business-units/search?q=openai&country=US&page=1&page_size=5" \
-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 |
| page | integer | No | 1 | 1-based page number; defaults to 1 |
| page_size | integer | No | 5 | Results per page; defaults to 20, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"country": "US",
"page": 1,
"page_size": 5,
"items": []
}
}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 business-unit search results from Trustpilot's JSON business-unit search API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"country": "US",
"page": 1,
"page_size": 5,
"items": []
}
}curl "https://api.crawlora.net/api/v1/trustpilot/business-units/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"