# Benchmark an Etsy scraping tool with live data

**Use case:** 

Benchmark Etsy scraping tools on a real dataset — 3 queries side by side, one CSV. Built for buyers comparing tools. How to compare price coverage across tools?

## Input

```json
{
  "searchQueries": [
    "monster high",
    "barbie",
    "polly pocket"
  ],
  "maxListings": 100,
  "enrichWithDetails": false
}
```

## Output

```json
{
  "listing_id": {
    "label": "Listing id",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "image_url": {
    "label": "Photo",
    "format": "string"
  },
  "title_en": {
    "label": "Product",
    "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": "In Stock",
    "format": "boolean"
  },
  "ships_from_country": {
    "label": "From",
    "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.