# Etsy Scraper — Listings, Prices & Tags via Official API | $4/1K (`bovi/etsy-listings`) Actor

Scrape Etsy active listings: title, price, currency, quantity, tags, views, favorites, and taxonomy. Uses the official Etsy Open API v3 — structured, reliable data. Free Etsy API key required (etsy.com/developers — takes 5 min). Pay per result.

- **URL**: https://apify.com/bovi/etsy-listings.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (community)
- **Categories:** E-commerce, MCP servers
- **Stats:** 23 total users, 11 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.88 / 1,000 listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Etsy Listings Scraper — Prices, Reviews, Shops | from $1.50/1K | No API Key

Built for Etsy sellers doing competitor research, e-commerce analysts tracking pricing trends, and dropshippers validating handmade/supply niches.

**Pricing:** Pay per listing — $1.50/1K. First results are free to try.

**No API key, no setup.** Just give a search keyword and/or a shop name — the actor reads the same public listing data that etsy.com shows in search results and on shop pages.

### What you get

| Field | Description |
|---|---|
| `listing_id` | Numeric Etsy listing ID |
| `title` | Listing title |
| `url` | Full listing URL on etsy.com (tracking params stripped) |
| `price` | Current price (float) |
| `original_price` | Strikethrough / list price on discounted listings |
| `on_sale` | `true` when the listing is discounted |
| `currency` | ISO 4217 currency code (e.g. USD, EUR, GBP) |
| `image_url` | Full-resolution listing image |
| `rating` | Star rating (0–5) |
| `review_count` | Number of reviews |
| `shop_id` | Numeric shop ID |
| `shop_name` | Shop name (when exposed on the page) |
| `shop_url` | Shop page URL |
| `is_ad` | Whether the listing is a promoted/ad slot |
| `free_shipping` | Free-shipping badge (best-effort) |
| `availability` | Stock status (e.g. `InStock`, when exposed) |
| `position` | Rank within the result set |
| `search_query` / `shop_filter` | Which input produced the row |
| `page_number` | Result page the row came from |
| `scraped_at` | ISO 8601 timestamp of this scrape |
| `parse_confidence` | Data-quality score 0–1 |
| `warnings` | Array of field-level quality warnings |

### Input

| Parameter | Type | Required | Description |
|---|---|---|---|
| `searchKeywords` | string | No\* | Keyword search across all of Etsy (e.g. "handmade soy candle") |
| `shopName` | string | No\* | Etsy shop name or URL to list one shop's items (e.g. "CitrineAndCo") |
| `maxItems` | integer | No | Max listings (default 100, 0 = unlimited) |
| `proxyConfiguration` | object | No | Apify Residential proxy (country US recommended) |

\* At least one of `searchKeywords` or `shopName` is required. You can use both.

#### Example inputs

**Search listings:**

```json
{
  "searchKeywords": "handmade soy candle",
  "maxItems": 200,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US" }
}
```

**List a single shop:**

```json
{
  "shopName": "CitrineAndCo",
  "maxItems": 500
}
```

### How it works

- **Keyword search:** reads `etsy.com/search?q=<keywords>`, page by page.
- **Shop listing:** reads `etsy.com/shop/<shopName>`, page by page.
- Both modes can run together (deduplicated by `listing_id`).
- Listing data is read from the page's structured listing cards plus the embedded `ItemList` metadata, so fields stay stable across cosmetic layout changes.

### Access & reliability

Etsy is a protected target — it requires a residential proxy for reliable access, and datacenter IPs are not reliable. This actor reaches the site with a resilient browser tier over Apify Residential that handles the site's challenge step automatically, with a managed-access service wired in as a backstop. You do **not** need any external proxy or browser account — everything runs on your own Apify account.

Every record ships a `parse_confidence` score (0.0–1.0), so your pipeline detects layout drift early — before buyers complain.

### Monetization

Pay-per-result (PPE): charged per listing returned. No charge for failed runs.

| Volume | Cost |
|---|---|
| 100 listings | $0.15 |
| 1,000 listings | $1.50 |
| 10,000 listings | $15.00 |

### Use with AI agents (MCP)

Compatible with Claude, GPT-4o, and other MCP-aware agents:

```
https://mcp.apify.com/?tools=bovi/etsy-listings
```

### Integrations

The JSON/dataset output drops into the tools you already run, no glue code:

- **n8n / Make / Zapier** — pipe every new dataset item into 500+ apps: [n8n](https://docs.apify.com/platform/integrations/n8n), [Make](https://docs.apify.com/platform/integrations/make), [Zapier](https://docs.apify.com/platform/integrations/zapier).
- **Webhooks** — fire your own endpoint the moment a run finishes ([docs](https://docs.apify.com/platform/integrations/webhooks)).
- **MCP server** — expose this actor as a tool to Claude, Cursor, or any [MCP client](https://mcp.apify.com) ([guide](https://blog.apify.com/how-to-use-mcp/)).
- **API & SDKs** — fetch the dataset as JSON, CSV, or Excel through the Apify REST API or the Python / JS SDKs.

See all [Apify integrations](https://apify.com/integrations).

### FAQ

**Do I need an Etsy API key?**
No. Just provide a search keyword and/or shop name — there's nothing to register.

**What if a run returns empty?**
If `searchKeywords` returns no results, try a broader term. If a shop has no active listings, `shopName` returns nothing. For the most reliable access, keep the Apify Residential (US) proxy enabled.

**What output formats are available?**
JSON (default), CSV, and Excel — via the Apify dataset export or API.

### Not affiliated with Etsy

This actor is an independent tool that collects publicly available listing data. It is not affiliated with, endorsed by, or connected to Etsy, Inc.

### More scrapers from our toolkit

Building a data pipeline? These actors pair well with this one — each runs on your own Apify account with the same pay-per-result pricing, no subscription:

- [Facebook Marketplace Scraper](https://apify.com/bovi/facebook-marketplace-scraper)
- [Grailed Listings](https://apify.com/bovi/grailed-listings)
- [Kleinanzeigen Listings Scraper](https://apify.com/bovi/kleinanzeigen-listings-scraper)
- [Leboncoin Listings](https://apify.com/bovi/leboncoin-listings)
- [Marktplaats Listings Scraper](https://apify.com/bovi/marktplaats-listings-scraper)
- [Mercadolibre Scraper](https://apify.com/bovi/mercadolibre-scraper)

Chain any of them together from the **Integrations** tab (the *Run succeeded* trigger) to build a multi-step workflow — one actor's output feeds the next.

# Actor input Schema

## `searchKeywords` (type: `string`):

Keyword or phrase to search across all Etsy shops (e.g. 'handmade soy candle', 'vintage ring'). Provide this and/or a Shop name below.

## `shopName` (type: `string`):

Etsy shop name to list a single shop's items (e.g. 'CitrineAndCo'). You can paste a full shop URL too. Use instead of, or together with, search keywords.

## `maxItems` (type: `integer`):

Maximum total listings to return across all pages. Set 0 for no limit. Default 100. Each page yields up to ~64 listings.

## `proxyConfiguration` (type: `object`):

REQUIRED. Etsy requires a residential proxy for reliable access — datacenter IPs are not reliable. Apify Residential (country US) gives the best pass rate. No external proxy account needed.

## Actor input object example

```json
{
  "searchKeywords": "handmade soy candle",
  "shopName": "CitrineAndCo",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

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

Dataset of Etsy listing records (listing\_id, title, price, original\_price, on\_sale, currency, rating, review\_count, shop\_id, shop\_name, image\_url, is\_ad, url, etc.)

# 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 = {
    "searchKeywords": "handmade soy candle",
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/etsy-listings").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 = {
    "searchKeywords": "handmade soy candle",
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

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

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

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

```

## CLI example

```bash
echo '{
  "searchKeywords": "handmade soy candle",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call bovi/etsy-listings --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=bovi/etsy-listings",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/Ril2B4775aoNRiRvm/builds/quumMJ3L8HvxvmxZ0/openapi.json
