import requests
response = requests.get(
"https://amazon-scraper-api.omkar.cloud/amazon/product-details",
params={"asin": "B0FWD72***", "country_code": "US"},
headers={"API-Key": "**********"}
)
print(response.json())
I tested according to the instructions in the sample and found that the returned results did not include the price. I expect to use this service and am willing to pay. I would like to know if this issue can be resolved?
import requests
response = requests.get(
"https://amazon-scraper-api.omkar.cloud/amazon/product-details",
params={"asin": "B0FWD72***", "country_code": "US"},
headers={"API-Key": "**********"}
)
print(response.json())
I tested according to the instructions in the sample and found that the returned results did not include the price. I expect to use this service and am willing to pay. I would like to know if this issue can be resolved?