Amazon Product API (Async)
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"asin": "ASIN",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/amazon/product"import requests
url = "https://async.scraperapi.com/structured/amazon/product"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"asin": "ASIN",
"country_code": "COUNTRY_CODE",
"tld" : "TLD",
"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",
"asins": ["ASIN1", "ASIN2],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/amazon/product"import requests
url = "https://async.scraperapi.com/structured/amazon/product"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"asins": ["ASIN1", "ASIN2"],
"country_code": "COUNTRY_CODE",
"tld" : "TLD",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)Parameters
Details
Sample Response
Last updated

