Geo parameter
Setting this parameter will determine the delivery location for Amazon or Walmart
Amazon
For Amazon, you can choose from these geo parameter values:
- Using a zip code, for example: 99950
curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"amazon\", \"url\": \"https://www.amazon.com/dp/B09H74FXNW\", \"geo\": \"99950\", \"parse\": \"true\"}"
- Using an ISO-2 country code, for example: IT
curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"amazon\", \"url\": \"https://www.amazon.com/dp/B09H74FXNW\", \"geo\": \"IT\", \"parse\": \"true\"}"
There are some exceptions for Amazon to the above rules:
- cn and com.tr domains will not work properly as geo parameter value due to Amazon configuration
- com.au domain only works for orders to Australia so you will need to use an Australian zip code in the geo parameter
- The
.ae
domain supports UAE city names, instead of postcodes, for example:"geo": "Abu Dhabi"
Note, that if the domain parameter matches the geo, for example - .com with US, .co.jp with JP, you will have to use the zip code instead of the countries ISO code.
Walmart
- Using a zip code, for example: 99950
curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"ecommerce\", \"url\": \"https://www.walmart.com/ip/Crocs-Unisex-Baya-Glitter-Clog-Sandals/5144555808", \"geo\": \"99950\"}"
- Using a full country name for example: Italy
curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartproxy.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"ecommerce\", \"url\": \"https://https://www.walmart.com/ip/Crocs-Unisex-Baya-Glitter-Clog-Sandals/5144555808", \"geo\": \"Italy\"}"
Updated 8 days ago