# Etsy Scraper — Competitor Listings, Prices & Best Sellers

**Use case:** 

Scrape Etsy listings by keyword to track competitor prices, best sellers, and product data. Export titles, prices, reviews, and shops to CSV or JSON — no code.

## Input

```json
{
  "search": [
    "handmade ring",
    "gold necklace",
    "silver bracelet"
  ],
  "scrapeDetails": true,
  "maxItems": 50,
  "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.