# Collect Etsy reviews + shop ratings at scale

**Use case:** 

Collect Etsy reviews + shop ratings for every listing in a niche — one CSV. Built for vendor research. How to filter for 4-star+ shops?

## Input

```json
{
  "searchQueries": [
    "personalized jewelry"
  ],
  "maxListings": 300,
  "enrichWithDetails": true
}
```

## Output

```json
{
  "listing_id": {
    "label": "ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "image_url": {
    "label": "Photo",
    "format": "string"
  },
  "title_en": {
    "label": "Title",
    "format": "string"
  },
  "price_num": {
    "label": "Price",
    "format": "number"
  },
  "currency_code": {
    "label": "Currency",
    "format": "string"
  },
  "shop_name": {
    "label": "Shop",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "string"
  },
  "review_count": {
    "label": "Reviews",
    "format": "string"
  },
  "is_available": {
    "label": "Available",
    "format": "boolean"
  },
  "is_sold_out": {
    "label": "Sold Out",
    "format": "boolean"
  },
  "quantity": {
    "label": "Qty",
    "format": "integer"
  },
  "ships_from_country": {
    "label": "Ships From",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "materials": {
    "label": "Materials",
    "format": "array"
  },
  "when_made": {
    "label": "When Made",
    "format": "string"
  },
  "taxonomy_path": {
    "label": "Category",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "favorites": {
    "label": "Favorites",
    "format": "integer"
  },
  "images": {
    "label": "Gallery",
    "format": "array"
  },
  "detail_url": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Etsy Search Scraper 2026](https://apify.com/devcake/etsy-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devcake/etsy-search-scraper) to learn more, explore other use cases, and run it yourself.