# Etsy Scraper (Products, Shops, Prices & Reviews) (`ulitron34/etsy-scraper`) Actor

Fast and reliable Etsy product scraper. Extract product listings, prices, shop names, star ratings, review counts, bestseller badges, and high-resolution images across Etsy.

- **URL**: https://apify.com/ulitron34/etsy-scraper.md
- **Developed by:** [ulises salgado diaz](https://apify.com/ulitron34) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 33.3% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## 🛍️ Etsy Scraper (Products, Shops, Prices & Reviews)

Extract comprehensive product listings, wholesale/retail pricing, shop seller details, star ratings, review counts, bestseller badges, and high-resolution images from **Etsy.com**.

Engineered for dropshippers, Print-on-Demand (POD) creators, Etsy shop owners, and e-commerce analysts. Built with anti-detect browser emulation and Apify Proxy integration to easily bypass anti-scraping protections and rate limits.

***

### 🌟 Key Features

- **Rich Product Information:** Extracts titles, direct clean listing URLs, and full-resolution images.
- **Accurate Pricing & Discounts:** Captures current prices, original strikethrough prices, and auto-calculates discount percentages.
- **Currency Detection:** Automatic identification of USD ($), EUR (€), GBP (£), CAD, AUD, and more.
- **Seller & Shop Intelligence:** Identifies shop names, Star Seller status, and direct store links for competitor analysis.
- **Social Proof & Reviews:** Collects numeric star ratings (1.0 to 5.0) and total review counts.
- **Market Badges:** Flags **Bestseller**, **Etsy's Pick**, **Free Shipping**, and **On Sale** listings.
- **Automated Pagination:** Effortlessly navigates multiple search pages until your desired item target is reached.
- **Stealth Architecture:** Built on top of Crawlee and Camoufox (anti-detect browser engine) to evade bot blocks.

***

### 💡 E-Commerce Use Cases

1. **Print on Demand (POD) & Trend Discovery:** Identify top-selling graphic tees, mugs, stickers, and digital downloads.
2. **Competitor & Price Benchmarking:** Track competitors' pricing strategies, sales, and discounts across any craft niche.
3. **Shop Inventory Intelligence:** Monitor entire product lines of top-performing Etsy sellers.
4. **Dropshipping Sourcing:** Discover unique handmade and customized products with verified positive ratings.
5. **SEO & Tag Research:** Analyze high-ranking listing titles and keywords across any product category.

***

### 📥 Input Parameters

| Parameter | Type | Required | Default | Description |
| :--- | :---: | :---: | :---: | :--- |
| `search` | String | No | `"leather wallet"` | Product keyword or category to search on Etsy (e.g., `'handmade jewelry'`, `'minimalist wall art'`, `'digital planner'`). |
| `start_urls` | Array | No | `[]` | Direct search or category URLs on Etsy. Takes priority over keyword if supplied. |
| `max_items` | Integer | No | `40` | Maximum number of products to scrape (1 to 1,000). |
| `min_price` | Number | No | `null` | Optional minimum price filter in USD ($). |
| `max_price` | Number | No | `null` | Optional maximum price filter in USD ($). |
| `sort_by` | String | No | `"most_relevant"` | Sorting: `'most_relevant'`, `'price_asc'`, `'price_desc'`, `'score_desc'`, `'date_desc'`. |
| `free_shipping_only` | Boolean | No | `false` | Filter only items offering free shipping. |
| `on_sale_only` | Boolean | No | `false` | Filter only items currently discounted or on sale. |
| `proxy_configuration` | Object | No | `{"useApifyProxy": true}` | Apify Proxy configuration to avoid IP bans. |

#### Example Input (JSON)

```json
{
    "search": "handmade leather wallet",
    "max_items": 50,
    "min_price": 20.0,
    "max_price": 80.0,
    "sort_by": "score_desc",
    "free_shipping_only": true,
    "proxy_configuration": {
        "useApifyProxy": true
    }
}
```

***

### 📤 Output Data Format

The Actor pushes structured records to the default dataset. You can view them in an interactive table or export to **JSON, CSV, Excel (XLSX), or XML**.

#### Sample Output Record

```json
{
    "id": "1654321987",
    "title": "Handmade Leather Bifold Wallet Personalized Monogram",
    "price": 32.0,
    "price_formatted": "$32.00",
    "original_price": 40.0,
    "discount_percent": 20.0,
    "currency": "USD",
    "shop_name": "HandmadeLeatherCo",
    "rating": 4.9,
    "reviews_count": 1245,
    "is_bestseller": true,
    "is_etsys_pick": false,
    "has_free_shipping": true,
    "is_star_seller": true,
    "is_on_sale": true,
    "url": "https://www.etsy.com/listing/1654321987/handmade-leather-bifold-wallet",
    "image_url": "https://i.etsystatic.com/123/r/il/wallet1.jpg",
    "scraped_at": "2026-09-24T19:24:00.000Z"
}
```

***

### ⚙️ Performance & Resources

- **Recommended Memory:** **512 MB – 1024 MB**.
- **Execution Speed:** ~15–30 seconds for 40 products.
- **Export Formats:** JSON, CSV, Excel, XML, HTML table.

***

### 🔒 Legal & Ethical Notice

This Actor extracts publicly accessible marketplace data from Etsy.com for price analysis, market research, and personal e-commerce insights. Please respect Etsy's Terms of Use and comply with relevant local scraping laws.

# Actor input Schema

## `search` (type: `string`):

Product keyword or category to search on Etsy (e.g., 'leather wallet', 'handmade jewelry', 'minimalist wall art', 'digital planner').

## `start_urls` (type: `array`):

Optional list of direct search or category URLs on Etsy. Takes priority over search keyword if provided.

## `max_items` (type: `integer`):

Maximum number of product listings to collect.

## `min_price` (type: `number`):

Optional minimum price filter in USD.

## `max_price` (type: `number`):

Optional maximum price filter in USD.

## `sort_by` (type: `string`):

Sorting criteria for search results.

## `free_shipping_only` (type: `boolean`):

Filter only products offering free shipping.

## `on_sale_only` (type: `boolean`):

Filter only items currently discounted or on sale.

## `proxy_configuration` (type: `object`):

Apify Proxy configuration to avoid rate limits and bot challenges.

## Actor input object example

```json
{
  "search": "leather wallet",
  "start_urls": [],
  "max_items": 20,
  "sort_by": "most_relevant",
  "free_shipping_only": false,
  "on_sale_only": false,
  "proxy_configuration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Scraped Etsy products with prices, shops, star ratings, review counts, and images.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "search": "leather wallet",
    "start_urls": [],
    "max_items": 20,
    "proxy_configuration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("ulitron34/etsy-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "search": "leather wallet",
    "start_urls": [],
    "max_items": 20,
    "proxy_configuration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("ulitron34/etsy-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "search": "leather wallet",
  "start_urls": [],
  "max_items": 20,
  "proxy_configuration": {
    "useApifyProxy": true
  }
}' |
apify call ulitron34/etsy-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ulitron34/etsy-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Bae9vdjCQC4IUFfwv/builds/9rHZqb2icyGgoexcM/openapi.json
