Walmart Category API (Async)
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"category": "CATEGORY",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"page": "PAGE",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/walmart/category"import requests
url = "https://async.scraperapi.com/structured/walmart/category"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"query": "QUERY",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"page": "PAGE",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"categories": ["CATEGORY1", "CATEGORY2"],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"page": "PAGE",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/walmart/category"import requests
url = "https://async.scraperapi.com/structured/walmart/category"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"categories": ["CATEGORY1", "CATEGORY2"],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"page": "PAGE",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)Parameters
Details
Sample Response
Last updated

