Amazon India Product Details
Pricing
from $7.00 / 1,000 results
Amazon India Product Details
Full Amazon India product details by ASIN or URL (India (amazon.in)): title, brand, buybox price, list price and discount, rating and review count, availability, seller and ships-from, delivery promise for a pincode, category path, bullets, specifications, description, images, variants and Best…
Pricing
from $7.00 / 1,000 results
Rating
0.0
(0)
Developer
AtTheRate AI
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
11 hours ago
Last modified
Categories
Share
Reads the full amazon.in product page for any ASIN 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 and variants. Give it a 6-digit pincode and the page is read as a shopper in that area sees it, so the price, the seller and the delivery promise are the local ones.
What you get
- Pincode-accurate reading: pass
pincodeand the delivery area is set before the page is fetched. Every row recordslocation_appliedanddelivery_location. - Buybox pricing:
price,original_price,discount_percentandcurrency(INR). - Availability as Amazon states it:
in_stock, the rawavailabilityline andstock_quantity. - Who is selling:
seller,seller_idandships_from, plus thedeliverypromise for that pincode. - Reviews and ranking:
rating,rating_count,best_sellers_rank,bsr_topandbsr_top_category. - Content:
name,brand,highlights,description,specifications,imagesandimages_count.
Input
Pass ASINs or product URLs, and a pincode if you want local pricing and delivery.
{"asins": ["B0CHX1W1XY"],"locale": "in","pincode": "122002","proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "IN" }}
asins(required): 10-character ASINs or product URLs such as.../dp/<ASIN>. Duplicates are ignored and every input gets one row.locale:infor amazon.in, the only storefront this actor covers.pincode: optional 6-digit Indian pincode. Anything else is rejected before the run starts.maxConcurrency: products fetched in parallel, 1 to 4. Two is the safe default.proxyConfiguration: residential proxy in India, already the default.
Output
One row per requested ASIN or URL. Real row from a 40 ASIN run at pincode 122002.
{"platform": "amazon-in","locale": "in","pincode": "122002","requested": "B0HFX8WCNF","found": true,"asin": "B0HFX8WCNF","name": "Google Pixel 11 5G (Obsidian)","brand": "Google","price": 82390,"original_price": 89999,"discount_percent": 8,"currency": "INR","rating": 4.5,"rating_count": 2,"in_stock": true,"availability": "In stock","seller": "The Rising Star","ships_from": "Amazon","delivery": "FREE delivery Wednesday, 16 September. Or fastest delivery Tomorrow 8 am - 12 pm.","delivery_location": "Gurugram 122002","location_applied": true,"bsr_top": 2197,"bsr_top_category": "Electronics","category_path": ["Electronics", "Mobiles & Accessories", "Smartphones"],"images_count": 5,"product_url": "https://www.amazon.in/dp/B0HFX8WCNF"}
price is null when there is no buybox offer, for example on an unavailable product. A dead ASIN returns a row with found: false and an error rather than failing the run. Repeated ASINs are deduplicated: a 40 ASIN input with 4 duplicates returned 36 rows.
Use cases
- City-level comparison: run the same ASIN list against several pincodes and compare
price,selleranddelivery. - Buybox and seller watch: alert when
sellerorships_fromchanges on a listing you own. - Availability monitoring:
in_stockandavailabilitycatch out-of-stock windows early.
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: nullrather than a neighbour's price. - A residential proxy in India is required. amazon.in challenges datacentre and non-Indian addresses more often than the other storefronts.
- A pincode that is not 6 digits fails input validation before the run starts, so no compute is billed.
location_appliedtells you whether Amazon accepted the pincode. If it did not, the run continues with the default location.- Every input produces a row. Invalid ids, missing products and errors come back as
found: falsewith the reason.
FAQ
Do I need a proxy? Yes, residential in India. The actor already defaults to residential IN.
How does the pincode work? The actor sets the delivery location on the session before fetching, the same way the location picker on the site does. The page then shows local availability, the local buybox seller and the local delivery date.
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.