Get Amazon.in Product Detail
get_productFetch a single Amazon.in product's details by ASIN or URL to retrieve price, MRP, discount, rating, availability, and other key data.
Instructions
Fetch a single amazon.in product's details by ASIN or URL.
Scrapes the product page and returns price, MRP, discount %, rating, review count, availability, bullets, brand, seller, delivery info, and a Keepa price-history URL.
Args:
asin_or_url (string): plain 10-char ASIN (e.g., "B0BDHWDR12") or any amazon.in product URL containing /dp/
Returns: JSON with schema: { "asin": string, "title": string, "url": string, "image": string, "price_inr": number, "price_display": string, "mrp_inr": number, "discount_percent": number, "rating": number, "review_count": number, "in_stock": boolean, "availability": string, "bullets": string[], "brand": string, "seller": string, "delivery": string, "price_history_url": string }
Error handling:
"Could not extract ASIN" → input was not a valid ASIN or amazon.in URL
"Bot-check page" → retry after a delay
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asin_or_url | Yes | Amazon.in ASIN (10 chars) or any product URL containing /dp/<ASIN> |