Scrape Walmart product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/walmart-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/walmart-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/walmart-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 Walmart product search
Searches Walmart for query and returns the products as JSON: name, price and wasPrice, rating, reviewCount, brand, seller, availability, image and a product url. Sort with sort, filter with min_price/max_price, and collect up to max_results across pages.
Scrape Walmart product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/walmart-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/walmart-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/walmart-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. 'laptop' or 'coffee maker'.
Ordering: best_match, price_low, price_high, best_seller, rating_high, new.
Lowest price to include (USD).
Required range:
x >= 0Highest price to include (USD).
Required range:
x >= 01-based page to start from (~40 per page).
Required range:
x >= 1How many products to collect across pages.
Required range:
1 <= x <= 1000Exit-IP country (ISO-2). Defaults to a US exit.
Response
JSON with a products array.

