# Web-scrape Etsy listings at full scale

**Use case:** 

Web scrape Etsy at max depth — up to 500 listings, every detail field, every engagement stat. Built for AI/ML datasets. How to spot duplicates at this volume?

## Input

```json
{
  "searchQueries": [
    "handmade leather bag",
    "vintage camera strap"
  ],
  "maxListings": 500,
  "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.