Endpoint Playground
Test Crawlora's List Shop.app 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/shop-app/products/4596217053229/reviews?limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 4596217053229 | Product id |
| limit | integer | No | 20 | Maximum reviews, defaults to 20 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"reviews": [
{
"rating": 5,
"body": "Perfect fit.",
"author": "Donal",
"date": "December 6, 2025"
}
]
}
}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 public product reviews from a Shop.app product page.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"reviews": [
{
"rating": 5,
"body": "Perfect fit.",
"author": "Donal",
"date": "December 6, 2025"
}
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/products/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"