eBay Product API (Async)
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"productId": "PRODUCTID",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/ebay/product"import requests
url = "https://async.scraperapi.com/structured/ebay/product"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"productId": "PRODUCTID",
"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",
"productIds": ["PRODUCTID1", "PRODUCTID2"],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/ebay/product"import requests
url = "https://async.scraperapi.com/structured/ebay/product"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"productIds": ["PRODUCTID1", "PRODUCTID2"],
"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

