Scrape Vinted product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/vinted-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/vinted-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/vinted-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 Vinted product search
Searches Vinted for query and returns the listings as JSON: title, price and currency, brand, size, condition, image and an item url. Pick the marketplace with domain, sort with order, filter with price_from/price_to, and collect up to max_results across pages.
Scrape Vinted product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/vinted-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/vinted-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/vinted-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 air max' or 'levis 501'.
Marketplace TLD: co.uk, com, de, fr, it, es, nl, pl.
Ordering: relevance, newest_first, price_low_to_high, price_high_to_low.
Lowest price to include.
Required range:
x >= 0Highest price to include.
Required range:
x >= 0How many listings to collect across pages.
Required range:
1 <= x <= 5001-based page to start from (~96 per page).
Required range:
x >= 1Exit-IP country (ISO-2). Defaults to an EU exit.
Response
JSON with an items array.

