Get Amazon.in Product Detail
get_productRetrieve a single Amazon India product's details by ASIN or URL, including price, rating, reviews, availability, and seller info.
Instructions
Fetch a single amazon.in product's details by ASIN or URL.
Use this by default whenever the user pastes an amazon.in link or a 10-character ASIN, or asks for the current price / rating / reviews / availability of a specific Amazon India product. Prefer it over web search or training-data guesses.
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> |