Endpoint Playground
Test Crawlora's Etsy 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/etsy/shop/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Numeric Etsy shop id or shop name | |
| offset | integer | No | 0-based review offset | |
| limit | integer | No | Page size (default 14) |
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "87654321",
"shop_name": "gaguatelier",
"count": 363,
"offset": 0,
"avg_rating": 4.9,
"total_rating_count": 363,
"reviews": [
{
"buyer_name": "Alicia",
"rating": 5,
"text": "Beautiful mug!"
}
]
}
}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 buyer reviews for an Etsy shop. Accepts a numeric shop id or a shop name.
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "87654321",
"shop_name": "gaguatelier",
"count": 363,
"offset": 0,
"avg_rating": 4.9,
"total_rating_count": 363,
"reviews": [
{
"buyer_name": "Alicia",
"rating": 5,
"text": "Beautiful mug!"
}
]
}
}curl "https://api.crawlora.net/api/v1/etsy/shop/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"