Endpoint Playground
Test Crawlora's Get Trustpilot business reviews 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/openai.com/reviews?page=1&stars=1&language=en&q=refund&date_from=2026-03-01&date_to=2026-03-30" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | openai.com | Trustpilot business slug |
| page | integer | No | 1 | 1-based page number; defaults to 1 |
| stars | integer | No | 1 | Filter by star rating from 1 to 5 |
| verified | boolean | No | Filter to verified reviews | |
| replied | boolean | No | Filter to reviews with business replies | |
| language | string | No | en | Review language code used by Trustpilot |
| q | string | No | refund | Text search within reviews |
| date_from | string | No | 2026-03-01 | Date range start in YYYY-MM-DD; currently rejected by upstream |
| date_to | string | No | 2026-03-30 | Date range end in YYYY-MM-DD; currently rejected by upstream |
{
"code": 200,
"msg": "OK",
"data": {
"business": {
"slug": "openai.com",
"name": "OpenAI"
},
"pagination": {
"page": 1,
"has_next_page": true,
"total_reviews": 1200
},
"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 paginated Trustpilot business reviews parsed from the public review page.
{
"code": 200,
"msg": "OK",
"data": {
"business": {
"slug": "openai.com",
"name": "OpenAI"
},
"pagination": {
"page": 1,
"has_next_page": true,
"total_reviews": 1200
},
"items": []
}
}curl "https://api.crawlora.net/api/v1/trustpilot/business/<slug>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"