Scrape Etsy product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/etsy-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/etsy-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/marketplace/etsy-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Plugins
Scrape Etsy product search
Searches Etsy for query and returns the products as JSON: title, price + currency, shop, image and a listing url. Sort with sort, filter with min_price/max_price, and collect up to max_results across pages. Prices are in USD by default.
Scrape Etsy product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/etsy-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/etsy-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/marketplace/etsy-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
What to search, e.g. 'handmade jewelry'.
Ordering: relevancy, price_asc, price_desc, newest, top_reviews.
Lowest price to include.
Required range:
x >= 0Highest price to include.
Required range:
x >= 01-based page to start from.
Required range:
x >= 1How many products to collect across pages.
Required range:
1 <= x <= 500Exit-IP country (ISO-2). Defaults to US (USD prices).
Response
JSON with a products array.

