# Etsy Search Scraper — Prices, Ratings & Seller Data

**Use case:** 

Scrape any Etsy search URL into structured data — prices, discounts, ratings, reviews, shop info, and sale flags. Export to CSV or JSON. No API key needed.

## Input

```json
{
  "searches": [
    "https://www.etsy.com/search?q=personalized+gift&mosv=sese&moci=1476057341652&mosi=1480999758015&is_merch_library=true&instant_download=false&order=highest_reviews"
  ],
  "maxResults": 50,
  "maxSearchPages": 10
}
```

## Output

```json
{
  "listing_id": {
    "label": "Listing ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "original_price": {
    "label": "Original price",
    "format": "string"
  },
  "discount_pct": {
    "label": "Discount",
    "format": "string"
  },
  "free_shipping": {
    "label": "Free Shipping",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "integer"
  },
  "shop_name": {
    "label": "Shop",
    "format": "string"
  },
  "is_ad": {
    "label": "Ad",
    "format": "boolean"
  },
  "is_sale": {
    "label": "Is sale",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "image_url": {
    "label": "Image",
    "format": "string"
  },
  "search_url": {
    "label": "Search url",
    "format": "string"
  }
}
```

## About this Actor

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