amazon.it APIamazon.it ↗
Access Amazon.it product search, details, categories, and best-seller rankings via a structured API. Returns prices, ratings, ASINs, specs, and images.
curl -X GET 'https://api.parse.bot/scraper/18564612-8aa3-47b4-a88b-4bc5ba70f945/search_products?sort=price-asc-rank&query=laptop' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Amazon Italy by keyword. Returns product listings with title, price, rating, and ASIN. Optionally sort results by price.
| Param | Type | Description |
|---|---|---|
| sort | string | Sort order for results. Accepted value: 'price-asc-rank' for price ascending. |
| queryrequired | string | Search keyword (e.g. 'laptop', 'cuffie bluetooth'). |
{
"type": "object",
"fields": {
"products": "array of product objects with asin, title, product_url, price, original_price, rating, ratings_count, prime, image_url"
},
"sample": {
"data": {
"products": [
{
"asin": "B0DSGDJLG4",
"price": 556.56,
"prime": true,
"title": "msi Modern 15 Notebook",
"rating": 4.4,
"image_url": "https://m.media-amazon.com/images/I/example.jpg",
"product_url": "https://www.amazon.it/-/en/dp/B0DSGDJLG4",
"ratings_count": 41,
"original_price": null
}
]
},
"status": "success"
}
}About the amazon.it API
The Amazon Italy API covers 5 endpoints for querying product data from amazon.it, returning fields like ASIN, price in EUR, rating, bullet points, and image URLs. The get_product_details endpoint delivers brand, specs, description, and median price for any ASIN. get_best_sellers ranks top products by department. get_categories exposes the full category hierarchy with slugs you can pass directly into other endpoints.
Search and Product Lookup
search_products accepts a query string (e.g. 'cuffie bluetooth') and an optional sort parameter ('price-asc-rank') to order results by ascending price. Each result in the products array includes asin, title, product_url, price, original_price, rating, ratings_count, a prime boolean, and image_url. get_search_results_csv mirrors this field set but always sorts by price ascending, making it convenient for tabular workflows.
Product Details
get_product_details takes a 10-character asin and returns a detailed record: brand, current price (EUR), median_price, rating, a bullets array of feature points, a specs object of key-value specification pairs, a description string, and an image_urls array. Fields such as price and rating are nullable when the product listing does not carry that data.
Categories and Best Sellers
get_categories requires no input and returns an array of top-level department objects, each with name, slug, and url. Those slugs feed directly into get_best_sellers via the department parameter (e.g. 'electronics', 'books', 'pc'). Omitting department returns the site-wide best-seller list. Each entry in best_sellers includes rank, asin, title, price, and rating, with up to 30 products per call.
- Track price changes on amazon.it by polling
get_product_detailsfor a set of ASINs and comparingpriceover time. - Build a department-level trend report using
get_best_sellerswith slugs fromget_categoriesto surface top-ranked products. - Compare
pricevsoriginal_priceacrosssearch_productsresults to identify discounted listings. - Populate a product catalog with Italian-market titles, specs, images, and bullet points from
get_product_details. - Export price-sorted product tables using
get_search_results_csvfor spreadsheet-based analysis. - Monitor category structure changes by periodically calling
get_categoriesto detect new or removed department slugs. - Cross-reference
ratings_countandratingfrom search results to rank products by review volume for a given keyword.
| 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 Italy have an official developer API?+
What does `get_product_details` return that `search_products` does not?+
get_product_details includes brand, bullets (feature bullet points), specs (a key-value object of technical specifications), description, median_price, and multiple image_urls. The search endpoint returns only a single image_url and omits those fields entirely.Does the API return seller information or third-party offers?+
prime flag, or multiple offer prices for a single ASIN. You can fork this API on Parse and revise it to add a seller-offers endpoint.Are customer reviews or review text included in any endpoint?+
rating (out of 5) and ratings_count only. You can fork this API on Parse and revise it to add a reviews endpoint that returns individual review content.How many best-seller products does `get_best_sellers` return per department?+
rank, asin, title, price, and rating. Pagination is not supported, so the response is capped at that count per request.