Endpoint Playground
Test Crawlora's Chrome Web Store 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/chromewebstore/reviews?id=cjpalhdlnbpafiamejdnhcphjbkeiagm&num=100&sort=recent&country=us&lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | cjpalhdlnbpafiamejdnhcphjbkeiagm | Chrome Web Store item id (32-character extension/theme id) |
| num | integer | No | 100 | Maximum number of reviews |
| sort | string | No | recent | Review sort order |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"total": 10482,
"count": 1,
"reviews": [
{
"id": "c05ba4d6-b816-49c4-80f6-ab1fcfdb1454",
"author": "delta",
"rating": 5,
"text": "so good, chrome wants it gone",
"posted": "2026-07-06",
"version": "1.72.0",
"language": "en"
}
]
}
}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 the reviews the store renders on an item's reviews page, each with author, star rating, text, posted/edited dates and reviewed version. Defaults: `num=20`, `country=us`, `lang=en`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"total": 10482,
"count": 1,
"reviews": [
{
"id": "c05ba4d6-b816-49c4-80f6-ab1fcfdb1454",
"author": "delta",
"rating": 5,
"text": "so good, chrome wants it gone",
"posted": "2026-07-06",
"version": "1.72.0",
"language": "en"
}
]
}
}curl "https://api.crawlora.net/api/v1/chromewebstore/reviews?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"