Endpoint Playground
Test Crawlora's Capterra Product 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/capterra/product/reviews?product_id=135003&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | 135003 | Capterra product id (the numeric id in a /p/{id}/{slug}/ URL) |
| page | integer | No | 1 | Page number (default 1) |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "135003",
"page": 1,
"rating": 4.7,
"review_count": 24148,
"has_next_page": true,
"reviews": [
{
"author": "Jake P.",
"headline": "Excellent Team Collaboration Hub, But Requires Mindful Notification Management",
"rating": 5,
"best_rating": 5
}
]
}
}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 a page of normalized Capterra reviews (author, headline, rating) plus the product's aggregate rating. Credential-free public Capterra data, rendered from the reviews page through proxied browser renderers.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "135003",
"page": 1,
"rating": 4.7,
"review_count": 24148,
"has_next_page": true,
"reviews": [
{
"author": "Jake P.",
"headline": "Excellent Team Collaboration Hub, But Requires Mindful Notification Management",
"rating": 5,
"best_rating": 5
}
]
}
}curl "https://api.crawlora.net/api/v1/capterra/product/reviews?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"