Etsy Scraper avatar

Etsy Scraper

Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Etsy Scraper

Etsy Scraper

epctex/etsy-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

Scrape valuable data from over 4 million Etsy sellers. Extract product details, descriptions, listed date, images, seller info, and more. Customize your searches and filters to gather the desired information effortlessly.

You can access the Etsy Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "startUrls": [
10        "https://www.etsy.com/listing/743657804/sheepskin-slippers-wool-slippers-fur?ga_order=most_relevant&ga_search_type=all&ga_view_type=gallery&ga_search_query=&ref=sc_gallery-5-1&plkey=89e47f49c28602795b44fc71559e2839056339d8%3A743657804&frs=1",
11        "https://www.etsy.com/c/clothing-and-shoes?ref=catnav-10923",
12        "https://www.etsy.com/search?q=apple%20watch",
13        "https://www.etsy.com/shop/PetiteFraise?ref=simple-shop-header-name&listing_id=490831663&page=2#items",
14    ],
15    "maxItems": 10,
16    "endPage": 1,
17    "extendOutputFunction": """($) => {
18    const result = {};
19    // Uncomment to add a title to the output
20    // result.title = $('title').text().trim();
21
22    return result;
23}""",
24    "customMapFunction": "(object) => { return {...object} }",
25    "proxy": {
26        "useApifyProxy": True,
27        "apifyProxyGroups": ["RESIDENTIAL"],
28    },
29}
30
31# Run the Actor and wait for it to finish
32run = client.actor("epctex/etsy-scraper").call(run_input=run_input)
33
34# Fetch and print Actor results from the run's dataset (if there are any)
35print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
36for item in client.dataset(run["defaultDatasetId"]).iterate_items():
37    print(item)
38
39# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Etsy Data Extractor API in Python

The Apify API client for Python is the official library that allows you to use Etsy Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Community
Actor metrics
  • 99 monthly users
  • 12 stars
  • 98.9% runs succeeded
  • 0.55 hours response time
  • Created in Mar 2021
  • Modified 42 minutes ago
Categories