amazon.ae APIamazon.ae ↗
Search Amazon.ae products, get detailed specs by ASIN, browse category best sellers, and fetch today's deals — all via a single structured API.
curl -X GET 'https://api.parse.bot/scraper/a2b1d25a-cafc-451c-bce2-c2e49c7767ac/search_products?page=1&query=wireless+earbuds' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon.ae by keyword with optional price and sort filters. Returns paginated results with up to ~50-60 products per page.
| Param | Type | Description |
|---|---|---|
| page | string | Page number for pagination. |
| sort | string | Sort order. Accepted values: price-asc-rank, price-desc-rank, review-rank, date-desc-rank. |
| queryrequired | string | Search keyword (e.g. 'laptop', 'wireless earbuds') |
| max_price | string | Maximum price filter in AED (e.g. '2000'). |
| min_price | string | Minimum price filter in AED (e.g. '200'). |
{
"type": "object",
"fields": {
"count": "integer total number of products returned on this page",
"products": "array of product objects with asin, title, price, rating, image_url, and url"
},
"sample": {
"data": {
"count": 48,
"products": [
{
"url": "https://www.amazon.ae/dp/B0BTYCRJSS",
"asin": "B0BTYCRJSS",
"price": "AED 69.00",
"title": "soundcore Anker P20i Bluetooth Earphones, 10mm Drivers with Big Bass True Wireless Earbuds",
"rating": "4.2 out of 5 stars",
"image_url": "https://m.media-amazon.com/images/I/61KisviM-gL._AC_UL320_.jpg"
}
]
},
"status": "success"
}
}About the amazon.ae API
The Amazon.ae API provides 4 endpoints to query products, retrieve technical specifications, and monitor deals on the UAE storefront. Use search_products to find items by keyword with price range and sort filters, returning up to 50–60 results per page with ASIN, title, price in AED, rating, and image URL. Other endpoints cover per-product detail, category best sellers, and today's live deals.
Endpoints and Response Data
The search_products endpoint accepts a required query string plus optional min_price, max_price (both in AED), sort (e.g. price-asc-rank, review-rank, date-desc-rank), and page parameters. Each page returns up to 50–60 product objects containing asin, title, price, rating, image_url, and url. This makes it straightforward to build keyword-driven product searches or price-filtered catalogs targeting the UAE market.
Product Details
get_product_details accepts either a 10-character asin or a full Amazon.ae product URL (containing /dp/ or /gp/product/). The response includes title, brand, model, price (in AED), weight, and a specs object of key-value technical specification pairs — useful for structured comparison across products or populating a product database with manufacturer data.
Best Sellers and Deals
get_best_sellers takes an optional category slug (e.g. electronics, books, fashion) and returns a ranked list of up to 30 products with rank, asin, title, and price. get_todays_deals requires no inputs and returns a deals array with asin, title, and price for every active deal found on the Today's Deals page, along with a total count. Both endpoints are useful for tracking promotional pricing and category rankings over time.
- Monitor daily price changes for specific ASINs on the Amazon.ae UAE storefront.
- Build a deal-alert tool using
get_todays_dealsto flag discounted products by category. - Populate a product comparison table with brand, model, weight, and technical specs via
get_product_details. - Track category-level best seller rankings over time using
get_best_sellerswith electronics or books slugs. - Filter keyword search results by AED price range to surface budget options in a niche segment.
- Aggregate product listings sorted by review rank to identify top-rated items in any category.
- Seed a product catalog database with structured ASIN, title, and pricing data from Amazon.ae.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Amazon have an official developer API?+
What does `get_product_details` return beyond the price?+
brand, model, weight, and a specs object containing key-value technical specification pairs as listed by the seller. The depth of specs varies by product category — electronics tend to have more fields than consumables.Does `search_products` return reviews or seller information?+
rating field but not individual review text, review count, or seller names. The API covers keyword search with price and sort filters. You can fork it on Parse and revise to add a reviews endpoint pulling per-product review data.Are product images included in the search results?+
search_products results includes an image_url field. get_product_details and get_best_sellers do not currently return image URLs. You can fork it on Parse and revise those endpoints to include image data.How does pagination work for `search_products`?+
page string parameter to retrieve subsequent result pages. Each page returns up to 50–60 products. The response includes a count field reflecting the number of products on the current page, not the total result set size across all pages.