Scrape Zalando product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/zalando-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/zalando-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/zalando-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 Zalando product search
Searches Zalando for query and returns the products as JSON: sku, brand, name, price, currency, image and a product url. Pick the storefront with domain and collect up to max_results across pages.
Scrape Zalando product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/zalando-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/zalando-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/zalando-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. 'nike sneakers' or 'winter jacket'.
Zalando storefront: en.zalando.de, www.zalando.co.uk, www.zalando.fr, www.zalando.it, www.zalando.es, www.zalando.nl, www.zalando.pl, www.zalando.de.
1-based page to start from (~48 per page).
Required range:
x >= 1How many products to collect across pages.
Required range:
1 <= x <= 500Exit-IP country (ISO-2). Defaults to an EU exit.
Response
JSON with a products array.

