Endpoint Playground
Test Crawlora's Etsy Listing 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/listing/<id>/reviews?sort=newest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Numeric Etsy listing id | |
| offset | integer | No | 0-based review offset | |
| sort | string | No | newest | Review sort order |
{
"code": 200,
"msg": "OK",
"data": {
"listing_id": "1044347578",
"count": 123,
"offset": 0,
"avg_rating": 4.9,
"total_rating_count": 123,
"reviews": [
{
"buyer_name": "Alicia",
"rating": 5,
"text": "Beautiful mug!",
"listing_id": "1044347578"
}
]
}
}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 listing.
{
"code": 200,
"msg": "OK",
"data": {
"listing_id": "1044347578",
"count": 123,
"offset": 0,
"avg_rating": 4.9,
"total_rating_count": 123,
"reviews": [
{
"buyer_name": "Alicia",
"rating": 5,
"text": "Beautiful mug!",
"listing_id": "1044347578"
}
]
}
}curl "https://api.crawlora.net/api/v1/etsy/listing/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"