Etsy Scraper for collecting prices, titles, descriptions, specifications, reviews, and other product information from etsy.com
Project description
Etsy Scraper
Oxylabs’ Etsy Scraper is a data gathering solution allowing you to extract real-time information from an Etsy website effortlessly. This brief guide explains how an Etsy Scraper works and provides code examples to understand better how you can use it hassle-free.
How it works
You can get Etsy results by providing your own URLs to our service. We can return the HTML for any Etsy page you like. Additionally, we can deliver structured (parsed) output for Etsy product pages.
Python code example
The example below illustrates how you can get a parsed Etsy product page result.
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'universal_ecommerce',
'url': 'https://www.etsy.com/listing/524233279/tiny-silver-forget-me-not-earrings',
'geo_location': 'United States',
'parse': True,
}
# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('user', 'pass1'),
json=payload,
)
# Instead of response with job status and results url, this will return the
# JSON response with the result.
pprint(response.json())
Find code examples for other programming languages here
Output Example
{
"results": [
{
"content": {
"url": "https://www.etsy.com/listing/524233279/tiny-silver-forget-me-not-earrings?click_key=dee3e777ad5cc36010f708a8991825c7d84649b8:524233279&click_sum=2cca2059&ref=hp_rv-3&sts=1",
"price": 29.48,
"title": "Tiny silver Forget me Not earrings. Dainty sterling threader earrings with light blue enameled blossom. Threader Stud earring for her.",
"images": [
"https://i.etsystatic.com/6401969/r/il/b84458/1226050351/il_75x75.1226050351_kvdw.jpg",
"https://i.etsystatic.com/6401969/c/1066/847/58/71/il/064963/1226057237/il_75x75.1226057237_q5jf.jpg",
"https://i.etsystatic.com/6401969/r/il/d68e0d/1226050373/il_75x75.1226050373_6u24.jpg",
"https://i.etsystatic.com/6401969/r/il/b71cfc/1226050549/il_75x75.1226050549_29un.jpg",
"https://i.etsystatic.com/6401969/r/il/fe8682/1178831922/il_75x75.1178831922_k9ny.jpg"
],
"seller": {
"url": "https://www.etsy.com/shop/VillaSorgenfrei?ref=simple-shop-header-name&listing_id=524233279",
"title": "VillaSorgenfrei",
"rating": 4.8636,
"star_seller": true,
"reviews_count": 34115
},
"reviews": {
"count": 258
},
"currency": "USD",
"shipping": {
"from": "Germany"
},
"categories": [
{
"title": "All categories"
},
{
"title": "Jewelry"
},
{
"title": "Earrings"
},
{
"title": "Stud Earrings"
}
],
"product_id": "524233279",
"stock_status": "Low in stock",
"variation_count": 1,
"parse_status_code": 12000
},
"created_at": "2022-11-17 14:45:28",
"updated_at": "2022-11-17 14:45:33",
"page": 1,
"url": "https://www.etsy.com/listing/524233279/tiny-silver-forget-me-not-earrings?click_key=dee3e777ad5cc36010f708a8991825c7d84649b8:524233279&click_sum=2cca2059&ref=hp_rv-3&sts=1",
"job_id": "6999019685052180481",
"status_code": 200,
"parser_type": "etsy_product"
}
]
}
With our Etsy Scraper, you can effortlessly extract public data from any Etsy web page. Collect the required product information, such as price, reviews, or descriptions, to analyze the market and stay ahead of your competitors. If you have any questions, contact our support team via live chat or email us at hello@oxylabs.io.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file etsy-scraper-api-0.1.1.tar.gz
.
File metadata
- Download URL: etsy-scraper-api-0.1.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa0c967c4354d8f2d8b54537274c83ce932382b9a0a988f310b4e6a2629a642 |
|
MD5 | a95f4a70603baefa8592020a10bd80b6 |
|
BLAKE2b-256 | 5881e87f13040c51dd934404e8bb4c924cd0e30d5ab48618c55fcce8d726b3e6 |
File details
Details for the file etsy_scraper_api-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: etsy_scraper_api-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9028c9b201eacfa74f8d4605ede0a6d8e6fc4155f2856ff06e781640f278bb9 |
|
MD5 | 1a7d7ac4617139fb11f47382e20c4364 |
|
BLAKE2b-256 | fc3689ab7d650295055ea6ad2a5ca49314db3c7d478415b58641cf2d34dbbdd8 |