# Etsy Shop Scraper — Export All Listings From a Shop

**Use case:** 

Export every listing from any Etsy shop: titles, prices, images, reviews, tags, and sales. Track competitor shops or back up your own catalog to CSV or JSON.

## Input

```json
{
  "search": [
    "handmade ring"
  ],
  "shopUrls": [
    "https://www.etsy.com/shop/HomeAndGardenStore"
  ],
  "scrapeDetails": true,
  "maxItems": 200,
  "region": "US",
  "detailConcurrency": 3
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Orig. price",
    "format": "number"
  },
  "isOnSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "favorites": {
    "label": "Favorites",
    "format": "number"
  },
  "freeShipping": {
    "label": "Free shipping",
    "format": "boolean"
  },
  "shopName": {
    "label": "Shop",
    "format": "text"
  },
  "shopSales": {
    "label": "Shop sales",
    "format": "number"
  },
  "yearsOnEtsy": {
    "label": "Years on Etsy",
    "format": "number"
  },
  "starSeller": {
    "label": "Star Seller",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "isAd": {
    "label": "Ad",
    "format": "boolean"
  },
  "shopId": {
    "label": "Shop ID",
    "format": "text"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Etsy Scraper — Products, Prices, Variations & Shop Data](https://apify.com/ruslanzotkin/etsy-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ruslanzotkin/etsy-scraper) to learn more, explore other use cases, and run it yourself.