Endpoint Playground
Test Crawlora's List Shop.app shop 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/shops/marcnolan/reviews?limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | marcnolan | Shop handle |
| limit | integer | No | 20 | Maximum reviews, defaults to 20 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"shop_id": "186720",
"reviews": [
{
"rating": 5,
"body": "Great shoes.",
"author": "Ada",
"product": {
"id": "8114373328975",
"title": "Solana Brown Woven Leather Backstrap Clogs"
}
}
],
"total_count": 15015
}
}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 reviews for a Shop.app merchant profile.
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"shop_id": "186720",
"reviews": [
{
"rating": 5,
"body": "Great shoes.",
"author": "Ada",
"product": {
"id": "8114373328975",
"title": "Solana Brown Woven Leather Backstrap Clogs"
}
}
],
"total_count": 15015
}
}curl "https://api.crawlora.net/api/v1/shop-app/shops/<handle>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"