This endpoint will retrieve product list data from Walmart as a result of a search.
Copy import requests
url = "https://async.scraperapi.com/structured/walmart/search"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": APIKEY,
"query": QUERY,
"page": PAGE,
"tld": TLD,
"output_format": FORMAT,
"callback": {
"type": "webhook",
"url": "YYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)
Copy import requests
url = "https://async.scraperapi.com/structured/walmart/search"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": APIKEY,
"page": PAGE,
"tld": TLD,
"output_format": FORMAT,
"queries": [QUERY1, QUERY2],
"callback": {
"type": "webhook",
"url": "YYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)
Copy {
"id": "2c75d8dc-02e9-4243-bef9-5da4bb352c4c",
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/2c75d8dc-02e9-4243-bef9-5da4bb352c4c",
"query": "bucket"
}
Copy [
{
"id": "b61d65c2-7998-41d5-8852-41175336d4b2",
"attempts": 0,
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/b61d65c2-7998-41d5-8852-41175336d4b2",
"query": "bucket"
},
{
"id": "e9d5a1b8-872c-4926-bb25-bc22c17c07bb",
"attempts": 0,
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/e9d5a1b8-872c-4926-bb25-bc22c17c07bb",
"query": "sprinkler"
}
]
After the job(s) finish, you will find the result under the response key in the response JSON object. The structure is the same as in the corresponding SYNC data endpoint.