Amazon Middle East Product Details avatar

Amazon Middle East Product Details

Pricing

from $7.00 / 1,000 results

Go to Apify Store
Amazon Middle East Product Details

Amazon Middle East Product Details

Full Amazon Middle East product details by ASIN or URL (UAE (amazon.ae), Saudi Arabia (amazon.sa), Egypt (amazon.eg)): title, brand, buybox price, list price and discount, rating and review count, availability, seller and ships-from, delivery promise for a postal code, category path, bullets,…

Pricing

from $7.00 / 1,000 results

Rating

0.0

(0)

Developer

AtTheRate AI

AtTheRate AI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Reads the full product page for any ASIN on amazon.ae, amazon.sa or amazon.eg and returns it as one clean row: buybox price, list price and discount, availability, rating and reviews, seller and ships-from, images, bullet points, Best Sellers Rank, variants and the category breadcrumb. Feed it ASINs or product URLs to keep your own and your rivals' listings current across the UAE, Saudi Arabia and Egypt.

What you get

  • Buybox pricing: price, original_price, discount_percent and currency (AED, SAR or EGP).
  • Availability as Amazon states it: in_stock, the raw availability line and stock_quantity.
  • Who is selling: seller, seller_id and ships_from, plus the delivery promise and delivery_location.
  • Reviews and ranking: rating, rating_count, best_sellers_rank, bsr_top and bsr_top_category.
  • Content: name, brand, highlights, description, specifications, images and images_count.
  • Product family: variants with sibling ASINs, parent_asin, badges and category_path.
  • Optional postal code: pass one and the delivery area is set first, with the result recorded in location_applied.

Input

Pass ASINs or product URLs and pick the storefront. ASINs are storefront specific.

{
"asins": ["B08MF793F1"],
"locale": "ae",
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "AE" }
}
  • asins (required): 10-character ASINs or product URLs such as .../dp/<ASIN>. Duplicates are ignored and every input gets one row.
  • locale: ae, sa or eg. Default ae.
  • pincode: optional postal code for the storefront, used to set the delivery area before the page is read.
  • maxConcurrency: products fetched in parallel, 1 to 4. Two is the safe default.
  • proxyConfiguration: residential proxy in the storefront's country, already defaulted to residential AE.

Output

One row per requested ASIN or URL.

{
"platform": "amazon-me",
"locale": "ae",
"requested": "B08MF793F1",
"found": true,
"asin": "B08MF793F1",
"name": "Product title as printed on the page",
"brand": "Brand name",
"price": 44.1,
"original_price": 49,
"discount_percent": 10,
"currency": "AED",
"rating": 4.3,
"rating_count": 44,
"in_stock": true,
"availability": "In stock",
"seller": "Amazon.ae",
"ships_from": "Amazon.ae",
"delivery": "FREE delivery Mon, 14 Sep",
"bsr_top": 1243,
"bsr_top_category": "Beauty",
"location_applied": false,
"product_url": "https://www.amazon.ae/dp/B08MF793F1"
}

price is null when the product has no buybox offer, for example when it is unavailable. review_count and seller_rating are always null, use rating_count. An ASIN that does not exist returns a row with found: false and an error message instead of failing the run.

Use cases

  • Daily price and discount monitoring of your own and rival ASINs across three storefronts.
  • Buybox and seller watch: alert when seller or ships_from changes on a listing you own.
  • Availability monitoring: in_stock and availability catch out-of-stock windows early.
  • Content audits: compare highlights, images_count and specifications against your standards.

Notes and limits

  • Price is read only from the buybox block. Carousels such as "customers also bought" are ignored, so an unavailable product returns price: null rather than a neighbour's price.
  • A residential proxy inside the storefront's country is required. Amazon serves a captcha to datacentre addresses.
  • The postal code is optional and these storefronts sometimes refuse the location call. The run then continues with the default location and records location_applied: false.
  • Every input produces a row. Invalid ids, missing products and errors come back as found: false with the reason.

FAQ

Do I need a proxy? Yes, residential in the storefront's country: AE for amazon.ae, SA for amazon.sa, EG for amazon.eg. The actor already defaults to residential AE.

How many products can I pull in one run? As many ASINs as you pass. Runtime is the only limit: two products at a time by default, capped at 4 in parallel.

Does it need a login or an API key? No. Public product pages only, no account and no seller credentials.

What happens with a wrong or dead ASIN? You get a row with found: false and the reason. The run still succeeds and the other ASINs are unaffected.