# Etsy Product Scraper & MCP Connector

**Use case:** 

Scrape Etsy product listings by category, collection, or search. Get price, rating, reviews, shop & stock data, export to CSV/JSON or push to Notion, Slack.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.etsy.com/in-en/r/themes/1314272289731?anchor_listings=1756050983&ref=hp_themes_module-2&rt-key=dd87c9da490601e01b39e400e005db90%253Ahp_themes_ingress%253ASPACE%253A1314272289731%253A9b872c98a6ecca01ab918cf870d40e45"
    }
  ],
  "searchQueries": [],
  "categories": [],
  "maxItems": 10,
  "maxPagesPerStartUrl": 3,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "mcpConnector": "vBTAN0MuQ91rygHp7",
  "deliveryMode": "summary",
  "mcpTool": "notion-create-pages",
  "mcpArguments": {
    "parent": {
      "page_id": "3a0e5ea63f438009ad09c7346ce9c943"
    }
  },
  "mcpItemTemplate": {
    "properties": {
      "title": "{title} — {shopName}"
    },
    "content": "Price: {currency} {price}\nRating: {rating} ({reviewsCount} reviews)\n{url}"
  },
  "mcpArrayField": "pages",
  "mcpBatchSize": 10,
  "mcpMessageTemplate": ""
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "shopName": {
    "label": "Shop",
    "format": "text"
  },
  "freeShipping": {
    "label": "Free shipping",
    "format": "boolean"
  },
  "stockWarning": {
    "label": "Stock warning",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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