# How to scrape data from Etsy (sample run)

**Use case:** 

How to scrape data from Etsy — run this small sample first to see the output, then scale up. For first-time users. Is full enrichment worth the cost?

## Input

```json
{
  "searchQueries": [
    "monster high"
  ],
  "maxListings": 30,
  "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.