How to Search Amazon United Arab Emirates
Set platform to "amazon" and marketplace to "AE". Scavio routes the request to amazon.ae and returns results in Arabic, English (and English where available) with prices in the local currency.
Python Example
import requests
response = requests.post(
"https://api.scavio.dev/api/v1/search",
headers={
"x-api-key": "your_scavio_api_key",
"Content-Type": "application/json",
},
json={
"platform": "amazon",
"query": "electronics",
"marketplace": "AE",
},
)
data = response.json()
for product in data.get("products", [])[:5]:
print(f"{product['title']}")
print(f" ${product.get('price', 'N/A')} | {product.get('rating', 'N/A')} stars")
print(f" ASIN: {product['asin']}\n")cURL Example
curl -X POST "https://api.scavio.dev/api/v1/search" \
-H "x-api-key: your_scavio_api_key" \
-H "Content-Type: application/json" \
-d '{"platform":"amazon","query":"electronics","marketplace":"AE"}'Top Categories on amazon.ae
- Electronics — a top-selling category in the United Arab Emirates market. Search by category, brand, or keyword.
- Home & kitchen — a top-selling category in the United Arab Emirates market. Search by category, brand, or keyword.
- Beauty — a top-selling category in the United Arab Emirates market. Search by category, brand, or keyword.
- Grocery — a top-selling category in the United Arab Emirates market. Search by category, brand, or keyword.
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 aggregation — collect product reviews for sentiment analysis.
- 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, rating, and reviews in clean fields.
- Multi-marketplace. Switch between amazon.ae, amazon.com, amazon.co.uk, and more by changing one field.
- Free tier. 500 credits per month. No card required.