Endpoint Playground
Test Crawlora's Capterra Product Detail 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?product_id=135003" \
-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) |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "135003",
"name": "Slack",
"description": "Slack is where work happens for millions of people everyday.",
"category": "Team Communication Software",
"url": "https://www.capterra.com/p/135003/product/",
"rating": 4.7,
"best_rating": 5,
"review_count": 24148
}
}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 normalized Capterra product profile: name, description, category, and aggregate rating. Credential-free public Capterra data, rendered from the product page through proxied browser renderers.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "135003",
"name": "Slack",
"description": "Slack is where work happens for millions of people everyday.",
"category": "Team Communication Software",
"url": "https://www.capterra.com/p/135003/product/",
"rating": 4.7,
"best_rating": 5,
"review_count": 24148
}
}curl "https://api.crawlora.net/api/v1/capterra/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"