How to Search Amazon United Arab Emirates
Set country to "ae" and query to "electronics". POST it to /api/v1/amazon/search and Scavio routes the request to amazon.ae, returning results in Arabic, English (and English where available) with prices in the local currency. Results come back under data.products and are unsorted: the marketplace has no sort parameter, so order one page yourself if you need cheapest first.
Python Example
import requests
response = requests.post(
"https://api.scavio.dev/api/v1/amazon/search",
headers={
"Authorization": "Bearer sk_live_your_scavio_api_key",
"Content-Type": "application/json",
},
json={
"query": "electronics",
"country": "ae",
},
)
data = response.json()["data"]
for product in data["products"][:5]:
print(product["title"])
print(f" {product.get('price')} {product.get('currency')} | {product.get('rating')} stars")
print(f" ASIN: {product['asin']}\n")cURL Example
curl -X POST "https://api.scavio.dev/api/v1/amazon/search" \
-H "Authorization: Bearer sk_live_your_scavio_api_key" \
-H "Content-Type: application/json" \
-d '{"query":"electronics","country":"ae"}'Top Categories on amazon.ae
- Electronics — a top-selling category in the United Arab Emirates market. Search by brand or keyword; there is no category filter parameter.
- Home & kitchen — a top-selling category in the United Arab Emirates market. Search by brand or keyword; there is no category filter parameter.
- Beauty — a top-selling category in the United Arab Emirates market. Search by brand or keyword; there is no category filter parameter.
- Grocery — a top-selling category in the United Arab Emirates market. Search by brand or keyword; there is no category filter parameter.
Use Cases for Amazon United Arab Emirates Data
- Price monitoring — track product prices in United Arab Emirates in real time.
- Competitor analysis — monitor what sellers and brands rank for key queries.
- Market research — understand product-category landscape in United Arab Emirates.
- Review signals — track rating and review count over time; review bodies are not returned.
- Shopping assistants — power AI agents with live Amazon United Arab Emirates data.
Why Use Scavio for Amazon United Arab Emirates
- No proxy setup. Scavio handles IP rotation and marketplace routing.
- Structured JSON. No HTML parsing: asin, price, currency, rating and reviews_count arrive as clean typed fields.
- Multi-marketplace. Switch between amazon.ae, amazon.com, amazon.co.uk, and more by changing one field.
- Free tier. 50 credits on signup. No card required.