amzn.in APIamzn.in ↗
Access Amazon India product search, details, specifications, and category bestsellers via a single REST API. Returns ASINs, prices, ratings, and specs.
curl -X GET 'https://api.parse.bot/scraper/f76ff521-a502-4da2-acf5-e409ce0aff4c/search_products?page=1&query=headphones' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon India by keyword. Returns a list of products with basic info including title, price, rating, and ASIN. Pagination beyond page 1 may be unreliable due to upstream limitations.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for results. Pages beyond 1 may return errors due to upstream limitations. |
| queryrequired | string | Search keyword (e.g. 'headphones', 'laptop under 50000'). |
{
"type": "object",
"fields": {
"page": "page number echoed back",
"query": "search keyword echoed back",
"results": "array of product objects with asin, title, price, mrp, rating, reviews_count, image_url, url",
"total_results": "number of results returned on this page"
},
"sample": {
"data": {
"page": 1,
"query": "headphones",
"results": [
{
"mrp": "2999",
"url": "https://www.amazon.in/dp/B0FM37JFPH",
"asin": "B0FM37JFPH",
"price": "999",
"title": "Boat Rockerz 371, 40mm Drivers, 50hrs Battery, Bluetooth Headphones",
"rating": "4.0",
"image_url": "https://m.media-amazon.com/images/I/61BWskzWNIL._AC_UY218_.jpg",
"reviews_count": "212"
}
],
"total_results": 16
},
"status": "success"
}
}About the amzn.in API
The amzn.in API exposes 4 endpoints for retrieving product data from Amazon India, covering search results, full product detail pages, technical specifications, and category bestseller rankings. The get_product_details endpoint returns up to 10 fields per product including price, MRP, availability, feature bullet points, and high-resolution image URLs — enough to build a complete product card or price comparison view.
What the API Returns
The search_products endpoint accepts a query string — natural language phrases like 'laptop under 50000' are supported — and returns an array of matching products, each with an asin, title, price, mrp, rating, reviews_count, image_url, and direct url. The page parameter allows basic pagination, though results beyond page 1 may be unreliable depending on upstream availability.
Product Details and Specifications
get_product_details takes a single asin and returns the full product record: brand, title, current price, mrp, rating, review_count, availability status, a description array of feature bullet points, and an images array of high-resolution URLs. For structured technical data, get_product_specifications returns a flat specifications object of key-value pairs extracted from the product overview and technical details tables — useful for attribute-level comparisons (e.g. battery capacity, resolution, weight).
Bestseller Rankings
get_category_bestsellers accepts a category path string matching Amazon India's bestseller URL structure (e.g. 'electronics', 'books', 'kitchen'). It returns a ranked list of products with rank, asin, title, price, rating, reviews_count, image_url, and url. The total_products field tells you how many items were returned for that category page.
Scope and Limitations
All endpoints are scoped to Amazon India (amazon.in) and return prices in Indian Rupees. Price and availability fields are nullable — null is returned when a product is unavailable or the field is not listed on the source page. Search pagination beyond page 1 is documented as potentially unreliable. Customer review text, seller information, and Q&A content are not exposed by the current endpoint set.
- Track price and MRP gaps for products by ASIN to identify discount depth over time
- Build category bestseller feeds for electronics, books, or kitchen using
get_category_bestsellers - Populate product catalog pages with titles, images, bullet-point descriptions, and availability from
get_product_details - Extract technical specification tables for side-by-side product comparisons using
get_product_specifications - Run keyword-based product discovery across Amazon India using natural-language
querystrings - Monitor rating and review count changes across a list of ASINs for competitive analysis
| 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 India have an official developer API?+
What does `get_product_specifications` return that `get_product_details` doesn't?+
get_product_details returns marketing-oriented data: bullet-point descriptions, brand, images, price, and rating. get_product_specifications returns a structured key-value object from the technical details tables — fields like connector type, model number, battery capacity, or dimensions — which are separate from the feature bullets and not included in the detail endpoint.How reliable is pagination in `search_products`?+
page parameter is accepted for higher pages, but the endpoint documentation explicitly notes that results beyond page 1 may return errors due to upstream limitations. Applications that need deep result sets should account for this with error handling.