# Etsy Product Search Pro (`hello.datawizards/etsy-product-search-pro`) Actor

Get your your desired data from Etsy Search  just from a single input queries along with additional filters. (Note:usage cost is low)

- **URL**: https://apify.com/hello.datawizards/etsy-product-search-pro.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Automation, Lead generation, E-commerce
- **Stats:** 27 total users, 1 monthly users, 93.3% runs succeeded, 1 bookmarks
- **User rating**: 2.00 out of 5 stars

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Search Scraper

Scrape detailed Etsy search results — fast, efficient, and proxy-free!

### 🌐 About Etsy

**Website:** [https://www.etsy.com/](https://www.etsy.com/)

Etsy is an online marketplace that connects creative entrepreneurs with customers looking for unique, handmade, or vintage products — including crafts, jewelry, home decor, clothing, and more.

---

### 🔍 What This Actor Does

The **Etsy Search Scraper** extracts structured search results and product-level details from Etsy, enabling you to:

- Search for products by query
- Filter by price
- Get detailed product metadata
- Extract shop details and shipping info
- Scrape **without** proxies for cost-effective results

---

### 📦 Extracted Data Fields

Each scraped item includes:

- `listing_id`
- `title`
- `shop_id`
- `shop_name`
- `shop_url`
- `price`
- `currency_code`
- `url`
- `images`
- `videos`
- `description`
- `shop_image_url`
- `shop_average_rating`
- `shop_total_rating_count`
- `origin_country_id`
- `origin_postal_code`
- `min_processing_days`
- `max_processing_days`
- `are_returns_accepted`
- `are_exchanges_accepted`
- `return_deadline_in_days`
- `ships_to_regions`

---

### ⚙️ Input Parameters

| Field          | Type      | Description                              |
|----------------|-----------|------------------------------------------|
| `search_query` | `array`   | List of search keywords to query         |
| `itemLimit`    | `integer` | Max number of results per query          |
| `minprice`     | `number`  | Minimum price filter                     |
| `maxprice`     | `number`  | Maximum price filter                     |
| `ship_to`      | `string`  | Country code to filter shipping options  |
| `sort`         | `string`  | Sorting method (e.g., `score`, `price`)  |

#### 💡 Example Input
```json
{
  "itemLimit": 30,
  "maxprice": 5000,
  "minprice": 5,
  "search_query": ["baby gifts"],
  "ship_to": "GB",
  "sort": "score"
}
````

***

### ✅ Example Output

```json
{
  "listing_id": 1792463614,
  "title": "Privacy Screen Protector, Pack of 2, for iPhone All models 6.1-inch, 9H Hardness, Anti-Spy, Smooth Touch, Anti-Scratch",
  "shop_id": 53380836,
  "shop_name": "ETHZenterprise",
  "shop_url": "https://www.etsy.com/shop/ETHZenterprise",
  "price": "5.58",
  "currency_code": "USD",
  "url": "https://www.etsy.com/listing/1792463614/privacy-screen-protector-pack-of-2-for",
  "images": [
    "https://i.etsystatic.com/53380836/r/il/79ca6c/6148439919/il_fullxfull.6148439919_pz0t.jpg"
  ],
  "videos": [],
  "description": "Privacy Protection: ...",
  "shop_image_url": "https://i.etsystatic.com/53380836/r/isla/a930db/71010894/isla_500x500.71010894_3fxwi4az.jpg",
  "shop_average_rating": "3.3846",
  "shop_total_rating_count": "13",
  "origin_country_id": 105,
  "origin_postal_code": "HA40QN",
  "min_processing_days": 1,
  "max_processing_days": 2,
  "are_returns_accepted": true,
  "are_exchanges_accepted": true,
  "return_deadline_in_days": 30,
  "ships_to_regions": ["ANY"]
}
```

***

### 💬 Notes

- If you receive empty results or encounter issues, please open an issue in the **Apify Console**.
- We are actively improving this actor, so your feedback is appreciated!

***

### 📣 Feedback & Support

Have questions, suggestions, or bugs to report?\
Go to the **Issues tab** of this actor in the Apify Console and let us know!

***

### 🚀 Thank You for Using Etsy Search Scraper!

````

# Actor input Schema

## `search_query` (type: `array`):

One or more queries where the crawler will start.
## `itemLimit` (type: `integer`):

Specifies the maximum number of items to process.
## `sort` (type: `string`):

Select sorting option
## `minprice` (type: `integer`):

Specifies the minimum price of items to process.
## `maxprice` (type: `integer`):

Specifies the maximum price of items to process.
## `ship_to` (type: `string`):

Select Shipping Country
## `location` (type: `string`):

One or more queries where the crawler will start.

## Actor input object example

```json
{
  "search_query": [
    "Phone Cover"
  ],
  "itemLimit": 10,
  "sort": "score"
}
````

# 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_query": [
        "Phone Cover"
    ],
    "itemLimit": 10,
    "sort": "score"
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/etsy-product-search-pro").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_query": ["Phone Cover"],
    "itemLimit": 10,
    "sort": "score",
}

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/etsy-product-search-pro").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 '{
  "search_query": [
    "Phone Cover"
  ],
  "itemLimit": 10,
  "sort": "score"
}' |
apify call hello.datawizards/etsy-product-search-pro --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Etsy Product Search Pro",
        "description": "Get your your desired data from Etsy Search  just from a single input queries along with additional filters. (Note:usage cost is low)",
        "version": "0.0",
        "x-build-id": "23sdESTDpZZOciRaN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/hello.datawizards~etsy-product-search-pro/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-hello.datawizards-etsy-product-search-pro",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/hello.datawizards~etsy-product-search-pro/runs": {
            "post": {
                "operationId": "runs-sync-hello.datawizards-etsy-product-search-pro",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/hello.datawizards~etsy-product-search-pro/run-sync": {
            "post": {
                "operationId": "run-sync-hello.datawizards-etsy-product-search-pro",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "search_query": {
                        "title": "Enter Search Queries",
                        "type": "array",
                        "description": "One or more queries where the crawler will start.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "itemLimit": {
                        "title": "Item Limit",
                        "type": "integer",
                        "description": "Specifies the maximum number of items to process.",
                        "default": 10
                    },
                    "sort": {
                        "title": "Sort By",
                        "enum": [
                            "price_down",
                            "price_up",
                            "score",
                            "created"
                        ],
                        "type": "string",
                        "description": "Select sorting option",
                        "default": "score"
                    },
                    "minprice": {
                        "title": "Max Price",
                        "type": "integer",
                        "description": "Specifies the minimum price of items to process."
                    },
                    "maxprice": {
                        "title": "Min price",
                        "type": "integer",
                        "description": "Specifies the maximum price of items to process."
                    },
                    "ship_to": {
                        "title": "Ships to",
                        "enum": [
                            "US",
                            "GB",
                            "CA",
                            "AU",
                            "DE",
                            "FR",
                            "IN",
                            "JP",
                            "BR",
                            "MX",
                            "IT",
                            "ES",
                            "CN",
                            "RU",
                            "KR",
                            "SE",
                            "ZA",
                            "NG",
                            "AR",
                            "EG",
                            "PL",
                            "TR",
                            "ID",
                            "PH",
                            "TH",
                            "SA",
                            "MY",
                            "SG",
                            "PK",
                            "VN"
                        ],
                        "type": "string",
                        "description": "Select Shipping Country"
                    },
                    "location": {
                        "title": "Enter Shop Location",
                        "type": "string",
                        "description": "One or more queries where the crawler will start."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
