# Etsy Product Search Data Extractor with Structured Data

**Use case:** 

etsy product search data extractor for AI agents and Apify MCP: structured, source-linked records with bounded inputs for research, automation, monitoring, and

## Input

```json
{
  "searchQuery": "etsy product search",
  "maxResults": 20,
  "maxPages": 10
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "shopName": {
    "label": "Shop name",
    "format": "string"
  },
  "isOnSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "hasFreeShipping": {
    "label": "Free shipping",
    "format": "boolean"
  },
  "badges": {
    "label": "Listing badges",
    "format": "array"
  },
  "dataSource": {
    "label": "Data source",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "string"
  },
  "position": {
    "label": "Result position",
    "format": "integer"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

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