## How to Use the Amazon Product Advertising API: A Comprehensive Guide
The **Amazon Product Advertising API** offers a wealth of opportunities for developers, affiliate marketers, and businesses looking to integrate Amazon's vast product catalog into their own websites or applications. With this API, you can access various functionalities such as product search, product details, best sellers, offer listings, and product reviews. This blog post will walk you through how to use the Amazon Product Advertising API, its features, and the potential benefits and ideas for using it.
### What is the Amazon Product Advertising API?
The Amazon Product Advertising API allows you to retrieve detailed information about products available on Amazon, such as:
- **Product Search**: Search for products by keywords.
- **Product Details**: Get detailed product information like price, features, dimensions, and reviews.
- **Best Sellers**: Get a list of best-selling items in a specific category.
- **Offer Listings**: Display available offers such as prices, shipping options, and discounts.
- **Product Reviews**: Access product reviews, ratings, and user feedback.
Using this API, you can integrate Amazon product data into your applications, build custom shopping experiences, or even drive affiliate marketing by linking directly to product listings.
### How to Call the Amazon Product Advertising API
The API is straightforward to use and supports multiple methods of interaction. Below are two examples of how you can call the API using `cURL` to search for a product and fetch detailed product information.
#### 1. **Search for Products**
To search for products (e.g., laptops) using the Amazon Product Advertising API, you can use a `GET` request like the following:
```bash
curl --request GET \
--url 'https://amazon-product-advertising-api.p.rapidapi.com/amazon_search.php?query=laptop&tld=com&countryCode=us' \
--header 'x-rapidapi-host: amazon-product-advertising-api.p.rapidapi.com' \
--header 'x-rapidapi-key: your_key'
```
This query will return a list of products related to the keyword "laptop" in the United States (`countryCode=us`). Here’s an example of the response:
```json
{
"results": [
{
"type": "search_product",
"position": 1,
"asin": "B0CV5ZSR17",
"name": "Acer Aspire Go 15 Slim Laptop | 15.6\" Full HD IPS 1080P Display | Intel Core i3-N305 | 8GB LPDDR5 | 128GB HD | Wi-Fi 6",
"image": "https://m.media-amazon.com/images/I/41mihvhc5CL._SL500_.jpg",
"price": 259.99,
"stars": 4.68,
"total_reviews": 385,
"url": "https://www.amazon.com/dp/B0CV5ZSR17?tag=mahmudul07-20&linkCode=osi&th=1&psc=1",
"features": "Speed and Storage: Equipped with an Intel Core i3-N305 processor, 8GB LPDDR5 RAM, and 128GB storage..."
}
]
}
```
You can see product details like:
- **Name**: Acer Aspire Go 15 Slim Laptop
- **Price**: $259.99
- **Rating**: 4.68 stars from 385 reviews
- **URL**: A direct link to the product on Amazon.
#### 2. **Fetch Product Details by ASIN**
If you already know the ASIN (Amazon Standard Identification Number) of a product and want to retrieve detailed product information, you can use the following `GET` request:
```bash
curl --request GET \
--url 'https://amazon-product-advertising-api.p.rapidapi.com/amazon_product.php?asin=B0CSQSNW62' \
--header 'x-rapidapi-host: amazon-product-advertising-api.p.rapidapi.com' \
--header 'x-rapidapi-key: your_key'
```
This will return detailed information about the specific product:
```json
{
"name": "Baby Brezza Official Detergent Soap Tablets for Baby Brezza Bottle Washer Pro",
"price": "$19.99",
"url": "https://www.amazon.com/dp/B0CSQSNW62",
"images": [
"https://images-na.ssl-images-amazon.com/images/I/41A-IWlVzmL.jpg"
],
"customerReview": "4.8 out of 5 stars",
"customerReviewCount": 319,
"features": [
"Safe and powerful cleaning for your baby’s bottles",
"Non-toxic, hypo-allergenic, fragrance-free",
"Contains 120 tablets"
]
}
```
### Features of the Amazon Product Advertising API
The Amazon Product Advertising API comes with several valuable features that make it ideal for developers and marketers:
1. **Product Search**: Access Amazon’s catalog with search queries tailored to any keywords, brands, or product categories. This feature allows you to filter results by country, price, ratings, and more.
2. **Detailed Product Information**: Retrieve comprehensive product details such as price, images, specifications, features, and reviews. You can even access the product's ASIN, brand, seller, and availability status.
3. **Best Sellers**: The API enables you to access the best-selling products across various categories, helping users discover popular and trending items.
4. **Offer Listings**: View current offers, discounts, and availability. This feature includes real-time updates on prices and shipping options.
5. **Product Reviews**: Get user ratings and reviews to help customers make informed buying decisions. You can also display product reviews within your applications or websites.
6. **Integration Flexibility**: You can integrate the API using various methods, including RESTful requests, which can be made with `curl`, Postman, or in your codebase using any programming language.
### Benefits of Using the Amazon Product Advertising API
1. **Enhance User Experience**: With real-time product data, including pricing, reviews, and features, you can offer a seamless shopping experience on your website or app, providing valuable insights into each product.
2. **Affiliate Marketing**: The API supports affiliate links, allowing you to monetize your content by earning commission on sales made through your links. You can easily embed affiliate links within your product search results.
3. **Custom E-commerce Solutions**: If you're building an e-commerce platform or an online marketplace, the API allows you to pull in product data from Amazon, enabling you to create a custom shopping experience.
4. **Market Analysis**: Using the **best sellers** and **reviews** data, you can analyze market trends, user preferences, and product popularity. This is particularly valuable for market research or businesses looking to stock trending products.
5. **Real-Time Data**: The API provides real-time data, ensuring that product prices, availability, and shipping options are always up-to-date.
### How to Use the API for Different Purposes
1. **Create Product Comparison Tools**: Use the product details and reviews to build comparison tools where users can compare prices, features, and ratings of similar products.
2. **Product Recommendation Engines**: Build recommendation engines that suggest similar products based on user preferences or search history.
3. **Affiliate Storefronts**: Create a personalized storefront or marketplace powered by Amazon's catalog, integrating product data, reviews, and offers, while earning affiliate commissions.
4. **Price Tracking Apps**: Build apps or websites that track product prices and notify users when prices drop, helping them save money.
5. **Shopping Websites and Apps**: Integrate the API into your shopping platform to provide real-time updates on Amazon products, offers, and reviews, increasing user engagement and providing seamless access to millions of products.
### Conclusion
The **Amazon Product Advertising API** is a powerful tool for developers, marketers, and businesses looking to leverage Amazon's vast product data. Whether you are building a custom e-commerce solution, creating an affiliate marketing platform, or integrating Amazon product data into your application, this API provides a straightforward and flexible way to access real-time product information.
By offering product searches, detailed product information, best sellers, offers, and reviews, the Amazon Product Advertising API is a valuable asset for anyone looking to create engaging and data-rich experiences for their users.
Get product list of search products
Search Product - Endpoint Features
Object | Description |
---|---|
query |
[Optional] |
tld |
[Required] |
countryCode |
[Required] |
{"results":[{"type":"search_product","position":1,"asin":"B08JKXDFQ9","name":"Meat Grinder, Hamburger Grinder, Masher and Burger Masher Premium Heat Resistant Burger Meat Grinder","image":"https:\/\/m.media-amazon.com\/images\/I\/41tpxy3N6sL._SL500_.jpg","all_images":[{"small":"https:\/\/m.media-amazon.com\/images\/I\/41oigvXdn4L._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41oigvXdn4L._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41oigvXdn4L._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51LRvqlK6TL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51LRvqlK6TL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51LRvqlK6TL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51tec7ke1kL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51tec7ke1kL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51tec7ke1kL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51SM03ahjhL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51SM03ahjhL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51SM03ahjhL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51dv6QQgpzL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51dv6QQgpzL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51dv6QQgpzL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/412FFUXp3XL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/412FFUXp3XL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/412FFUXp3XL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/41tpxy3N6sL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41tpxy3N6sL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41tpxy3N6sL._SL500_.jpg"}],"has_prime":true,"is_best_seller":true,"is_amazon_choice":false,"is_limited_deal":false,"purchase_history_message":"+ bought in past month","stars":4.88,"total_reviews":526,"url":"https:\/\/www.amazon.com\/dp\/B08JKXDFQ9?tag=mahmudul07-20&linkCode=osi&th=1&psc=1","price_string":"$8.99","price_symbol":"$","price":8.99,"original_price":{"price_string":"$8.99","price_symbol":"$","price":8.99},"features":"Perfect Kitchen Tool: Our meat chopper tool with 5 wide beveled pinwheel blades, which is easier to chop and crumble food than other products with three or four blades. This meat masher can not only chop all kinds of meats for quick cooking, but is also very suitable for mixing and mashing other foods, such as gelatin, fruits, vegetables, etc., Premium And Safe Material: Our ground meat masher is made of very solid nylon material, BPA free, non-stick, odorless, and with a high temperature resistance up to 447\u2109; It is safe to use on all types of cookware including non stick and coated., Multiple Colors: A variety of colors are available, you can choose your favorite color to match your kitchen decoration., Easy To Clean: This meat masher adopts anti-dirt design, non-stick surfaces, the ground meat chopper can be cleaned easily in the sink or dishwasher. This meat smasher utensil is the best tool for cooking in your kitchen., Easy To Use: Simply press the blade of the ground beef smasher into the cooked food and stir to the desired consistency; use the angled blade to scrape the sides of bowls and pots when mixing and mashing food.","product_info":{"color":"Black","dimensions":{"height":{"value":0.1,"unit":"inches"},"length":{"value":11,"unit":"inches"},"weight":{"value":"No Weight","unit":"No Unit"},"width":{"value":2.44,"unit":"inches"}},"release_date":"No Release Date","size":"1 Pack","unit_count":"No Unit Count"}},{"type":"search_product","position":2,"asin":"B00004OCNJ","name":"OXO Good Grips Stainless Steel Bench Scraper & Chopper","image":"https:\/\/m.media-amazon.com\/images\/I\/21RYbe5E1lL._SL500_.jpg","all_images":[{"small":"https:\/\/m.media-amazon.com\/images\/I\/31+x6g2qOZL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/31+x6g2qOZL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/31+x6g2qOZL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/41HOupDeO8L._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41HOupDeO8L._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41HOupDeO8L._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/413VemAizuL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/413VemAizuL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/413VemAizuL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/41nLHTk7izL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41nLHTk7izL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41nLHTk7izL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51o0GPGQVdL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51o0GPGQVdL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51o0GPGQVdL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51awpixBDEL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51awpixBDEL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51awpixBDEL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/41eNZV0SWqL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41eNZV0SWqL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41eNZV0SWqL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/31wiGvBCgwL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/31wiGvBCgwL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/31wiGvBCgwL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/21RYbe5E1lL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/21RYbe5E1lL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/21RYbe5E1lL._SL500_.jpg"}],"has_prime":true,"is_best_seller":true,"is_amazon_choice":false,"is_limited_deal":false,"purchase_history_message":"+ bought in past month","stars":4.67,"total_reviews":384,"url":"https:\/\/www.amazon.com\/dp\/B00004OCNJ?tag=mahmudul07-20&linkCode=osi&th=1&psc=1","price_string":"$11.99","price_symbol":"$","price":11.99,"original_price":{"price_string":"$11.99","price_symbol":"$","price":11.99},"features":"Great for cutting dough, sectioning crusts, scraping baking sheets, chopping veggies and more, Stainless steel blade includes quarter inch markings for easy measuring, Soft, comfortable non slip handle, Tall enough to keep hands away from food, Dishwasher safe, Stainless steel blade features 1\" markings for precise measuring","product_info":{"color":"Stainless Steel","dimensions":{"height":{"value":1.75,"unit":"Inches"},"length":{"value":6.25,"unit":"Inches"},"weight":{"value":0.5,"unit":"Pounds"},"width":{"value":4,"unit":"Inches"}},"release_date":"2018-10-06T00:00:01Z","size":"1 Count","unit_count":1}},{"type":"search_product","position":3,"asin":"B07Q2WVG1Z","name":"KitchenAid Gourmet Multi Sided Meat Tenderizer for Pounding Meats, Nuts, Shellfish, ect, Hang Hole for Easy Storage, Hand Wash, One Size, Black","image":"https:\/\/m.media-amazon.com\/images\/I\/31AWCHqAFXL._SL500_.jpg","all_images":[{"small":"https:\/\/m.media-amazon.com\/images\/I\/41mtPC5BunL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41mtPC5BunL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41mtPC5BunL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/31MgsCdVxNL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/31MgsCdVxNL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/31MgsCdVxNL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51+0qsVpm8L._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51+0qsVpm8L._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51+0qsVpm8L._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/41QjRaJpFwL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/41QjRaJpFwL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/41QjRaJpFwL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51mNhn8H6eL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51mNhn8H6eL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51mNhn8H6eL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/51ki7IhVB4L._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/51ki7IhVB4L._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/51ki7IhVB4L._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/61ZyQZRgclL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/61ZyQZRgclL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/61ZyQZRgclL._SL500_.jpg"},{"small":"https:\/\/m.media-amazon.com\/images\/I\/31AWCHqAFXL._SL75_.jpg","medium":"https:\/\/m.media-amazon.com\/images\/I\/31AWCHqAFXL._SL160_.jpg","large":"https:\/\/m.media-amazon.com\/images\/I\/31AWCHqAFXL._SL500_.jpg"}],"has_prime":true,"is_best_seller":true,"is_amazon_choice":false,"is_limited_deal":false,"purchase_history_message":"+ bought in past month","stars":4.67,"total_reviews":384,"url":"https:\/\/www.amazon.com\/dp\/B07Q2WVG1Z?tag=mahmudul07-20&linkCode=osi&th=1&psc=1","price_string":"$8.49","price_symbol":"$","price":8.49,"original_price":{"price_string":"$8.49","price_symbol":"$","price":8.49},"features":"TEXTURIZED SURFACE : One of the sides surface is textured for optimum use on a variety of meats, SMOOTH SIDE INCLUDED : The opposite side of the meat tenderizer is smooth for pounding and flattening For cutlets, ALUMUNUM CONSTRUCTION : Aluminum construction provides a lightweight, strong and durable tool for the kitchen, MULTIPLE STORAGE OPTIONS : There is a hole in the ergonomic handle that gives you the option for convenient hanging storage, EASY CARE: Hand wash with warm water and a m...
curl --location --request GET 'https://zylalabs.com/api/6430/amazon+product+advertising+api/9233/search+product?query=seat&tld=com&countryCode=us' --header 'Authorization: Bearer YOUR_API_KEY'
Get single product details by ASIN
Product details - Endpoint Features
Object | Description |
---|---|
asin |
[Optional] |
{"original_status":301,"pc_status":200,"url":"https://www.amazon.com/Replacement-Powder-Container-Formula-Advanced/dp/B0BCBVW6LN","body":{"name":"Baby Brezza Replacement Powder Container and Lid for Formula Pro Advanced Only","price":"$19.99","originalPrice":"","rawPrice":19.99,"currency":"$","canonicalUrl":"https://www.amazon.com/Replacement-Powder-Container-Formula-Advanced/dp/B0BCBVW6LN","soldBy":{"sellerID":"","name":"Amazon.com Amazon.com Sold by Amazon.com","link":"https://www.amazon.com"},"deliveredBy":"","parentAsin":["B0BTQ4H13K"],"asinVariationValues":[],"isPrime":true,"inStock":true,"maximumQuantity":"30","stockDetail":"In Stock","couponInfo":"","dealBadge":"","mainImage":"https://images-na.ssl-images-amazon.com/images/I/31YjAmzLC2L.jpg","images":["https://images-na.ssl-images-amazon.com/images/I/41T%20agYj3CL.jpg","https://images-na.ssl-images-amazon.com/images/I/41KDIcm%202iL.jpg"],"imagesCount":3,"highResolutionImages":["https://m.media-amazon.com/images/I/51qBzTfYV9L._SL1114_.jpg","https://m.media-amazon.com/images/I/71wJYHC5oBL._SL1500_.jpg","https://m.media-amazon.com/images/I/71bTHBDNIFL._SL1500_.jpg"],"videos":[],"videosCount":0,"productGuidesAndDocuments":{"productDocumentationLink":"","userManualLink":""},"byLineInfo":{"name":"Visit the Baby Brezza Store","link":"https://www.amazon.com/stores/BabyBrezza/page/49177862-51F8-4456-9BA4-30A1D5D31A61?lp_asin=B0BCBVW6LN\u0026ref_=ast_bln\u0026store_ref=bl_ast_dp_brandLogo_sto"},"brand":"BabyBrezza","merchantInfo":"","customerReview":"4.8 out of 5 stars","customerReviewCount":392,"boughtInfo":"800+ bought in past month","answeredQuestionsCount":0,"editorialReviews":[],"warrantyMessage":"Amazon.com Return Policy: Amazon.com Voluntary 30-Day Return Guarantee: You can return many items you have purchased within 30 days following delivery of the item to you. Our Voluntary 30-Day Return Guarantee does not affect your legal right of withdrawal in any way. You can find out more about the exceptions and conditions here.","shippingMessage":"Get Fast, Free Shipping with Amazon Prime","deliveryMessages":["FREE delivery Sunday, April 13 on orders shipped by Amazon over $35","Or Prime members get FREE delivery Tomorrow, April 9. Order within 3 hrs 55 mins. Join Prime"],"climatePledgeFriendly":{"present":false,"details":""},"features":["1 Powder Container and 1 Powder Container Lid compatible only with the Formula Pro Advanced1 Powder Container and 1 Powder Container Lid compatible only with the Formula Pro Advanced","Hand wash only.","Do not clean or sterilize in a dishwasher, sterilizer or microwave.","Official replacement part made by Baby Brezza","Guaranteed to work like new. Other brands of replacement parts are not tested by Baby Brezza, may not work, and will void the appliance's 1 year limited warranty if used."],"classifiedFacts":[],"description":"1 Powder Container and 1 Powder Container Lid for Formula Pro Advanced.","breadCrumbs":[{"name":"Baby Products","link":"https://www.amazon.com/baby-car-seats-strollers-bedding/b?ie=UTF8\u0026node=165796011"},{"name":"Feeding","link":"https://www.amazon.com/baby-feeding-highchair-bottle-bibs/b?ie=UTF8\u0026node=166777011"},{"name":"Bottle-Feeding","link":"https://www.amazon.com/Bottle-Feeding/b?ie=UTF8\u0026node=166779011"},{"name":"Formula Dispensers \u0026 Mixers","link":"https://www.amazon.com/Baby-Formula-Dispensers-Mixers/b?ie=UTF8\u0026node=379024011"}],"productInformation":[{"name":"Package Dimensions","value":"β8.07 x 6.5 x 5.55 inches"},{"name":"Item model number","value":"βAST116"},{"name":"Material Composition","value":"βPlastic"},{"name":"Care instructions","value":"βHand Wash Only"},{"name":"Style","value":"βPowder Container"},{"name":"Batteries required","value":"βNo"},{"name":"Item Weight","value":"β8.4 ounces"},{"name":"Country/Region of origin","value":"βChina"},{"name":"ASIN","value":"B0BCBVW6LN"},{"name":"Customer Reviews","value":"4.8 4.8 out of 5 stars 392 ratings 4.8 out of 5 stars"},{"name":"Best Sellers Rank","value":"#5,076 in Baby (See Top 100 in Baby) #18 in Baby Formula Dispensers \u0026 Mixers"}],"manufacturerProductDescription":[{"media_text":"ABOUT US Do you wish you had more time every day? Baby Brezza saves you time feeding and nurturing your baby with our innovative line of products that require less effort, use less parts and are intuitively designed. In fact, theyβll save you about 10 hours a month.","media_link":["https://m.media-amazon.com/images/S/aplus-media/sota/41276112-c315-441f-aff8-ca0710065f4d.__CR0,0,970,600_PT0_SX970_V1___.jpg"]}],"manufacturerProductImages":["https://m.media-amazon.com/images/S/aplus-media/sota/1e4df5a3-91db-4f24-9c0c-40868a96c680.__CR0,0,970,600_PT0_SX970_V1___.jpg","https://m.media-amazon.com/images/S/aplus-media/sota/41276112-c315-441f-aff8-ca0710065f4d.__CR0,0,970,600_PT0_SX970_V1___.jpg"],"sponsoredAds":[],"productReviewBottom":[],"productReviewTop":{"5 star":"89%","4 star":"6%","3 star":"2%","2 star":"1%","1 star":"2%"},"reviews":[{"reviewerName":"NeensNeens","reviewId":"R21W9F61FM2GR6","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AHT2KSVBHUH3CCX4FO4NTW3MJBXQ","reviewLink":"https://www.amazon.com/gp/customer-reviews/R21W9F61FM2GR6?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on March 29, 2025","reviewTitle":"5.0 out of 5 stars The shoe fits!","reviewText":"As many others before me, I had to order this part because I tried to sterilize.","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":["https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/grey-pixel.gif.jpg","https://m.media-amazon.com/images/I/61EkUXjU4ML.jpg"],"video":""}},{"reviewerName":"KimB.","reviewId":"R1E2GDBNAEAANN","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AE3Z6NNMFY266DCBLOAW4PNHCZXA","reviewLink":"https://www.amazon.com/gp/customer-reviews/R1E2GDBNAEAANN?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on April 2, 2025","reviewTitle":"5.0 out of 5 stars Good!","reviewText":"Purchased this for my son. He advised that it works well and heβs happy with it. Very good quality and reasonable price.","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"Mel","reviewId":"RM7Q0ECD1OUI5","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AFNGBRTOFS554QWJXYS4PO25J5RQ","reviewLink":"https://www.amazon.com/gp/customer-reviews/RM7Q0ECD1OUI5?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on February 26, 2025","reviewTitle":"5.0 out of 5 stars Perfect replacement","reviewText":"I accidentally ruined the original one in the dishwasher and this replacement worked perfectly. No complaints, hand wash only from now on.","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"T. Nakatani","reviewId":"R1MLEBTSDTQPN6","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AFH45ICCRGEBTMN2EEOU5WQOHQ7A","reviewLink":"https://www.amazon.com/gp/customer-reviews/R1MLEBTSDTQPN6?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on August 12, 2024","reviewTitle":"5.0 out of 5 stars Meltable but critical part","reviewText":"Why do I need a Baby Brezza replacement powder container? Because my Baby Brezza sterilizer MELTED the original. This seems to be a very common theme (melting) of many other purchasers of this product. Like them my original warped when my MIL put it in the sterilizer.The replacement arrived quickly and fit with the other parts without issue. I didn't need the cover, which doesn't match the black mixer I had BTW, so that's a spare. I think it's made of different plastic so won't melt.Highly Recommended if you have the misfortune of needing one of these.","reviewVotes":"One person found this helpful","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"Cheyenne Leigh","reviewId":"RWC2MFELE0QX4","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AFB5Q5Q3ZJLO2P4UHADTVJPVDQ3Q","reviewLink":"https://www.amazon.com/gp/customer-reviews/RWC2MFELE0QX4?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on March 5, 2025","reviewTitle":"5.0 out of 5 stars Replacement.","reviewText":"Perfect replacement product. Accident of melted mine in the bottle sterilizer so had to buy a replacement","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"Micke'l","reviewId":"R1DKDT8MZ8U4HT","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AFSDV5TVKEATM7SOYPBZ5N73KUOA","reviewLink":"https://www.amazon.com/gp/customer-reviews/R1DKDT8MZ8U4HT?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on December 15, 2024","reviewTitle":"5.0 out of 5 stars A solid replacement","reviewText":"Meets all expectations","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"SAMUEL COLEMAN","reviewId":"R28IBJSJ57I0LY","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AH4NZQBT6BB5NG5ROTPXGDWNF4BA","reviewLink":"https://www.amazon.com/gp/customer-reviews/R28IBJSJ57I0LY?ASIN=B0BCBVW6LN","reviewRating":"5.0 out of 5 stars","reviewDate":"Reviewed in the United States on March 17, 2025","reviewTitle":"5.0 out of 5 stars Perfect","reviewText":"Perfect replacement part came in 1-2 days too.","reviewVotes":"","reviewVerifiedPurchase":true,"reviewCommentCount":0,"media":{"images":[],"video":""}},{"reviewerName":"Steph","reviewId":"R1URLSHC2K0KT1","reviewerLink":"https://www.amazon.com/gp/profile/amzn1.account.AEHOCMBDYVJALD2HOPOU5HPHDNMQ","reviewLink":"https://www.amazon.com/...
curl --location --request GET 'https://zylalabs.com/api/6430/amazon+product+advertising+api/9235/product+details?asin=B0CSQSNW62' --header 'Authorization: Bearer YOUR_API_KEY'
Get more product details
Detailed Product details - Endpoint Features
Object | Description |
---|---|
item_id |
[Required] |
{"ItemsResult":{"Items":[{"ASIN":"B0CSQSNW62","DetailPageURL":"https://www.amazon.com/dp/B0CSQSNW62?tag=mahmudul07-20&linkCode=ogi&th=1&psc=1","Images":{"Primary":{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/41A-IWlVzmL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/41A-IWlVzmL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/41A-IWlVzmL._SL75_.jpg","Width":75}},"Variants":[{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/41HM1POfIwL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/41HM1POfIwL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/41HM1POfIwL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/41w53xNHTXL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/41w53xNHTXL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/41w53xNHTXL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/411npJKbeKL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/411npJKbeKL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/411npJKbeKL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/31Ks8EuR2aL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/31Ks8EuR2aL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/31Ks8EuR2aL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/41+lk8WRnsL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/41+lk8WRnsL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/41+lk8WRnsL._SL75_.jpg","Width":75}}]},"ItemInfo":{"ByLineInfo":{"Brand":{"DisplayValue":"Baby Brezza","Label":"Brand","Locale":"en_US"},"Manufacturer":{"DisplayValue":"Baby Brezza","Label":"Manufacturer","Locale":"en_US"}},"Classifications":{"Binding":{"DisplayValue":"Baby Product","Label":"Binding","Locale":"en_US"},"ProductGroup":{"DisplayValue":"Baby Product","Label":"ProductGroup","Locale":"en_US"}},"ExternalIds":{"EANs":{"DisplayValues":["0886267000904"],"Label":"EAN","Locale":"en_US"},"UPCs":{"DisplayValues":["886267000904"],"Label":"UPC","Locale":"en_US"}},"Features":{"DisplayValues":["Safe and powerful cleaning for your babyβs bottles, pump parts & accessories","Exclusively made for Baby Brezza Bottle Washer Pro. NOTE: the machineβs warranty will be voided if any other brand or type of detergent is used","Removes stubborn milk residue and odor","Baby-safe, non-toxic, hypo-allergenic and fragrance-free","Contains 120 tablets"],"Label":"Features","Locale":"en_US"},"ManufactureInfo":{"ItemPartNumber":{"DisplayValue":"Hengulus","Label":"PartNumber","Locale":"en_US"},"Model":{"DisplayValue":"Hengulus","Label":"Model","Locale":"en_US"}},"ProductInfo":{"Color":{"DisplayValue":"White","Label":"Color","Locale":"en_US"},"Size":{"DisplayValue":"120 Count (Pack of 1)","Label":"Size","Locale":"en_US"},"UnitCount":{"DisplayValue":1,"Label":"NumberOfItems","Locale":"en_US"}},"Title":{"DisplayValue":"Baby Brezza Official Detergent Soap Tablets for Baby Brezza Bottle Washer Pro, 120 Tablets","Label":"Title","Locale":"en_US"}},"Offers":{"Listings":[{"Availability":{"Message":"In Stock","MinOrderQuantity":1,"Type":"Now"},"Condition":{"SubCondition":{"Value":"New"},"Value":"New"},"DeliveryInfo":{"IsAmazonFulfilled":true,"IsFreeShippingEligible":true,"IsPrimeEligible":true},"Id":"lvyKGNoQt3mMN1YVke1Dt8C9%2BVlSlTlSAmH5YtkmDGXUUu8D603oFe6%2FhxDvpPrjDJBILa6pP9cqGqOzlkzm8Fd31CSPTye%2BlocYyU61xn%2BSsd6ShK8HvasMmirTCmrHPJSQfiBtWsaDfwlluAtpiQ%3D%3D","IsBuyBoxWinner":true,"MerchantInfo":{"FeedbackCount":384,"FeedbackRating":4.67,"Id":"ATVPDKIKX0DER","Name":"Amazon.com"},"Price":{"Amount":19.99,"Currency":"USD","DisplayAmount":"$19.99"},"ProgramEligibility":{"IsPrimeExclusive":false,"IsPrimePantry":false},"Promotions":[{"Amount":19.99,"Currency":"USD","DiscountPercent":0,"DisplayAmount":"$19.99 (0%)","Type":"SNS"}],"ViolatesMAP":false}],"Summaries":[{"Condition":{"Value":"New"},"HighestPrice":{"Amount":19.99,"Currency":"USD","DisplayAmount":"$19.99"},"LowestPrice":{"Amount":19.99,"Currency":"USD","DisplayAmount":"$19.99"},"OfferCount":1}]},"ParentASIN":"B0CXDG2Y74"}]}}
curl --location --request GET 'https://zylalabs.com/api/6430/amazon+product+advertising+api/9237/detailed+product+details?item_id=B0CSQSNW62' --header 'Authorization: Bearer YOUR_API_KEY'
get all amazon search result
Search Index Value
Search Index Display Name
All - All Departments
AmazonVideo - Prime Video
Apparel - Clothing & Accessories
Appliances - Appliances
ArtsAndCrafts - Arts, Crafts & Sewing
Automotive - Automotive Parts & Accessories
Baby - Baby
Beauty - Beauty & Personal Care
Books - Books
Classical - Classical
Collectibles - Collectibles & Fine Art
Computers - Computers
DigitalMusic - Digital Music
DigitalEducationalResources - Digital Educational Resources
Electronics - Electronics
EverythingElse Everything Else
Fashion Clothing, Shoes & Jewelry
FashionBaby Clothing, Shoes & Jewelry Baby
FashionBoys Clothing, Shoes & Jewelry Boys
FashionGirls Clothing, Shoes & Jewelry Girls
FashionMen Clothing, Shoes & Jewelry Men
FashionWomen Clothing, Shoes & Jewelry Women
GardenAndOutdoor Garden & Outdoor
GiftCards Gift Cards
GroceryAndGourmetFood Grocery & Gourmet Food
Handmade Handmade
HealthPersonalCare Health, Household & Baby Care
HomeAndKitchen Home & Kitchen
Industrial Industrial & Scientific
Jewelry Jewelry
KindleStore Kindle Store
LocalServices Home & Business Services
Luggage Luggage & Travel Gear
LuxuryBeauty Luxury Beauty
Magazines Magazine Subscriptions
MobileAndAccessories Cell Phones & Accessories
MobileApps Apps & Games
MoviesAndTV Movies & TV
Music CDs & Vinyl
MusicalInstruments Musical Instruments
OfficeProducts Office Products
PetSupplies Pet Supplies
Photo Camera & Photo
Shoes Shoes
Software Software
SportsAndOutdoors Sports & Outdoors
ToolsAndHomeImprovement Tools & Home Improvement
ToysAndGames Toys & Games
VHS VHS
VideoGames Video Games
Watches Watches
Advanced Search - Endpoint Features
Object | Description |
---|---|
keywords |
[Optional] |
sortBy |
[Required] you could sort the data by `Relevance`, `AvgCustomerReviews`, `Featured`, `NewestArrivals`, `Price:HighToLow`, ` Price:LowToHigh` |
itemPage |
[Required] |
searchIndex |
[Required] Search Index, if you looking get specific product category use this - `All` All Departments - `AmazonVideo` Prime Video - `Apparel` Clothing & Accessories - `Appliances` Appliances - `ArtsAndCrafts` Arts, Crafts & Sewing - `Automotive` Automotive Parts & Accessories - `Baby` Baby - `Beauty` Beauty & Personal Care - `Books` Books - `Classical` Classical - `Collectibles` Collectibles & Fine Art - `Computers` Computers - `DigitalMusic` Digital Music - `DigitalEducationalResources` Digital Educational Resources - `Electronics` Electronics - `EverythingElse` Everything Else - `Fashion` Clothing, Shoes & Jewelry - `FashionBaby` Clothing, Shoes & Jewelry Baby - `FashionBoys` Clothing, Shoes & Jewelry Boys - `FashionGirls` Clothing, Shoes & Jewelry Girls - `FashionMen` Clothing, Shoes & Jewelry Men - `FashionWomen` Clothing, Shoes & Jewelry Women - `GardenAndOutdoor` Garden & Outdoor - `GiftCards` Gift Cards - `GroceryAndGourmetFood` Grocery & Gourmet Food - `Handmade` Handmade - `HealthPersonalCare` Health, Household & Baby Care - `HomeAndKitchen` Home & Kitchen - `Industrial` Industrial & Scientific - `Jewelry` Jewelry - `KindleStore` Kindle Store - `LocalServices` Home & Business Services - `Luggage` Luggage & Travel Gear - `LuxuryBeauty` Luxury Beauty - `Magazines` Magazine Subscriptions - `MobileAndAccessories` Cell Phones & Accessories - `MobileApps` Apps & Games - `MoviesAndTV` Movies & TV - `Music` CDs & Vinyl - `MusicalInstruments` Musical Instruments - `OfficeProducts` Office Products - `PetSupplies` Pet Supplies - `Photo` Camera & Photo - `Shoes` Shoes - `Software` Software - `SportsAndOutdoors` Sports & Outdoors - `ToolsAndHomeImprovement` Tools & Home Improvement - `ToysAndGames` Toys & Games - `VHS` VHS - `VideoGames` Video Games - `Watches` Watches |
{"SearchResult":{"Items":[{"ASIN":"B08JKXDFQ9","BrowseNodeInfo":{"BrowseNodes":[{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Home & Kitchen","DisplayName":"Categories","Id":"1063498"},"ContextFreeName":"Kitchen & Dining","DisplayName":"Kitchen & Dining","Id":"284507"},"ContextFreeName":"Kitchen Utensils & Gadgets","DisplayName":"Kitchen Utensils & Gadgets","Id":"289754"},"ContextFreeName":"Meat & Poultry Tools","DisplayName":"Meat & Poultry Tools","Id":"760358"},"ContextFreeName":"Meat Grinders","DisplayName":"Meat Grinders","Id":"3737071","IsRoot":false,"SalesRank":2}],"WebsiteSalesRank":{"SalesRank":74}},"DetailPageURL":"https://www.amazon.com/dp/B08JKXDFQ9?tag=mahmudul07-20&linkCode=osi&th=1&psc=1","Images":{"Primary":{"Large":{"Height":499,"URL":"https://m.media-amazon.com/images/I/41tpxy3N6sL._SL500_.jpg","Width":500},"Medium":{"Height":159,"URL":"https://m.media-amazon.com/images/I/41tpxy3N6sL._SL160_.jpg","Width":160},"Small":{"Height":74,"URL":"https://m.media-amazon.com/images/I/41tpxy3N6sL._SL75_.jpg","Width":75}},"Variants":[{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/41oigvXdn4L._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/41oigvXdn4L._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/41oigvXdn4L._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/51LRvqlK6TL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/51LRvqlK6TL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/51LRvqlK6TL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/51tec7ke1kL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/51tec7ke1kL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/51tec7ke1kL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/51SM03ahjhL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/51SM03ahjhL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/51SM03ahjhL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/51dv6QQgpzL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/51dv6QQgpzL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/51dv6QQgpzL._SL75_.jpg","Width":75}},{"Large":{"Height":500,"URL":"https://m.media-amazon.com/images/I/412FFUXp3XL._SL500_.jpg","Width":500},"Medium":{"Height":160,"URL":"https://m.media-amazon.com/images/I/412FFUXp3XL._SL160_.jpg","Width":160},"Small":{"Height":75,"URL":"https://m.media-amazon.com/images/I/412FFUXp3XL._SL75_.jpg","Width":75}}]},"ItemInfo":{"ByLineInfo":{"Brand":{"DisplayValue":"PGYARD","Label":"Brand","Locale":"en_US"},"Manufacturer":{"DisplayValue":"PGYARD","Label":"Manufacturer","Locale":"en_US"}},"Classifications":{"Binding":{"DisplayValue":"Kitchen","Label":"Binding","Locale":"en_US"},"ProductGroup":{"DisplayValue":"Kitchen","Label":"ProductGroup","Locale":"en_US"}},"ExternalIds":{"EANs":{"DisplayValues":["0738633471002"],"Label":"EAN","Locale":"en_US"},"UPCs":{"DisplayValues":["738633471002"],"Label":"UPC","Locale":"en_US"}},"Features":{"DisplayValues":["Perfect Kitchen Tool: Our meat chopper tool with 5 wide beveled pinwheel blades, which is easier to chop and crumble food than other products with three or four blades. This meat masher can not only chop all kinds of meats for quick cooking, but is also very suitable for mixing and mashing other foods, such as gelatin, fruits, vegetables, etc.","Premium And Safe Material: Our ground meat masher is made of very solid nylon material, BPA free, non-stick, odorless, and with a high temperature resistance up to 447β; It is safe to use on all types of cookware including non stick and coated.","Multiple Colors: A variety of colors are available, you can choose your favorite color to match your kitchen decoration.","Easy To Clean: This meat masher adopts anti-dirt design, non-stick surfaces, the ground meat chopper can be cleaned easily in the sink or dishwasher. This meat smasher utensil is the best tool for cooking in your kitchen.","Easy To Use: Simply press the blade of the ground beef smasher into the cooked food and stir to the desired consistency; use the angled blade to scrape the sides of bowls and pots when mixing and mashing food."],"Label":"Features","Locale":"en_US"},"ProductInfo":{"Color":{"DisplayValue":"Black","Label":"Color","Locale":"en_US"},"ItemDimensions":{"Height":{"DisplayValue":0.1,"Label":"Height","Locale":"en_US","Unit":"inches"},"Length":{"DisplayValue":11.0,"Label":"Length","Locale":"en_US","Unit":"inches"},"Width":{"DisplayValue":2.44,"Label":"Width","Locale":"en_US","Unit":"inches"}},"Size":{"DisplayValue":"1 Pack","Label":"Size","Locale":"en_US"}},"Title":{"DisplayValue":"Meat Grinder, Hamburger Grinder, Masher and Burger Masher Premium Heat Resistant Burger Meat Grinder","Label":"Title","Locale":"en_US"}},"Offers":{"Listings":[{"Availability":{"Message":"In Stock","MinOrderQuantity":1,"Type":"Now"},"Condition":{"SubCondition":{"Value":"New"},"Value":"New"},"DeliveryInfo":{"IsAmazonFulfilled":true,"IsFreeShippingEligible":true,"IsPrimeEligible":true},"Id":"yr8t9m3XQA2G83t5IFR6yUnjy%2Fy7oKds07SKKbx2d1C1%2BRHzulaJTeZcJ%2BV0%2Fvyo7YqSo7%2Bzdv%2F3Fxb6q0NtrFQo3Adbl%2B3kOD63xPZMmL9w%2Bn%2FtH863%2FyFuS3t3OyXPl8UuN9j71TpCcl7DCD6w1pUPAfCoDFFgd47QL9UEiE3RUZAgtF0TRbJoY%2FrrIQ5f","IsBuyBoxWinner":true,"MerchantInfo":{"DefaultShippingCountry":"CN","FeedbackCount":526,"FeedbackRating":4.88,"Id":"A2ZTDLZI9WHQ6N","Name":"ONESANG US"},"Price":{"Amount":8.99,"Currency":"USD","DisplayAmount":"$8.99","Savings":{"Amount":1.0,"Currency":"USD","DisplayAmount":"$1.00 (10%)","Percentage":10}},"ProgramEligibility":{"IsPrimeExclusive":false,"IsPrimePantry":false},"SavingBasis":{"Amount":9.99,"Currency":"USD","DisplayAmount":"$9.99","PriceType":"LIST_PRICE"},"ViolatesMAP":false}],"Summaries":[{"Condition":{"Value":"New"},"HighestPrice":{"Amount":8.99,"Currency":"USD","DisplayAmount":"$8.99"},"LowestPrice":{"Amount":8.99,"Currency":"USD","DisplayAmount":"$8.99"},"OfferCount":1}]},"ParentASIN":"B095HQ9D6V"},{"ASIN":"B00004OCNJ","BrowseNodeInfo":{"BrowseNodes":[{"Ancestor":{"ContextFreeName":"Stores","DisplayName":"Stores","Id":"265523"},"ContextFreeName":"Amazon.com Stores","DisplayName":"Amazon.com Stores","Id":"285080","IsRoot":false},{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Home & Kitchen","DisplayName":"Categories","Id":"1063498"},"ContextFreeName":"Kitchen & Dining","DisplayName":"Kitchen & Dining","Id":"284507"},"ContextFreeName":"Kitchen Utensils & Gadgets","DisplayName":"Kitchen Utensils & Gadgets","Id":"289754"},"ContextFreeName":"Seasoning & Spice Tools","DisplayName":"Seasoning & Spice Tools","Id":"289779"},"ContextFreeName":"Choppers & Mincers","DisplayName":"Choppers & Mincers","Id":"289780"},"ContextFreeName":"Seasoning & Spice Choppers","DisplayName":"Choppers","Id":"678514011","IsRoot":false},{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Home & Kitchen Features","DisplayName":"Home & Kitchen Features","Id":"13900811","IsRoot":false},{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Kitchen & Dining Features","DisplayName":"Kitchen & Dining Features","Id":"13900821","IsRoot":false},{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Arborist Merchandising Root","DisplayName":"Arborist Merchandising Root","Id":"119967313011"},"ContextFreeName":"Self Service","DisplayName":"Self Service","Id":"2334098011"},"ContextFreeName":"Custom Stores","DisplayName":"Custom Stores","Id":"2334129011"},"ContextFreeName":"d34536a7-31a6-4091-a755-bc7310f59854_0","DisplayName":"d34536a7-31a6-4091-a755-bc7310f59854_0","Id":"119967315011"},"ContextFreeName":"d34536a7-31a6-4091-a755-bc7310f59854_701","DisplayName":"d34536a7-31a6-4091-a755-bc7310f59854_701","Id":"119967435011"},"ContextFreeName":"Gifts by Type","DisplayName":"Gifts by Type","Id":"7730876011"},"ContextFreeName":"Current Trends in Home, Kitchen & Garden","DisplayName":"Current Trends in Home, Kitchen & Garden","Id":"7730888011"},"ContextFreeName":"Vintage Baking","DisplayName":"Vintage Baking","Id":"7730902011","IsRoot":false},{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Arborist Merchandising Root","DisplayName":"Arborist Merchandising Root","Id":"119967313011"},"ContextFreeName":"Self Service","DisplayName":"Self Service","Id":"2334098011"},"ContextFreeName":"Special Features Stores","DisplayName":"Special Features Stores","Id":"2334160011"},"ContextFreeName":"caa5e178-c039-41b4-8bfd-0b01485bbef9_0","DisplayName":"caa5e178-c039-41b4-8bfd-0b01485bbef9_0","Id":"119967314011"},"ContextFreeName":"caa5e178-c039-41b4-8bfd-0b01485bbef9_7101","DisplayName":"caa5e178-c039-41b4-8bfd-0b01485bbef9_7101","Id":"119967332011"},"ContextFreeName":"Most-loved home & kitchen deals","DisplayName":"Most-loved home & kitchen deals","Id":"119186708011","IsRoot":false},{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"Ancestor":{"ContextFreeName":"Home & Kitchen","DisplayName":"Home & Kitchen","Id":"1055398"},"ContextFreeName":"Arborist Merc...
curl --location --request GET 'https://zylalabs.com/api/6430/amazon+product+advertising+api/9238/advanced+search?keywords=kitchen cabinets&sortBy=Relevance&itemPage=1&searchIndex=All' --header 'Authorization: Bearer YOUR_API_KEY'
Header | Description |
---|---|
Authorization
|
[Required] Should be Bearer access_key . See "Your API Access Key" above when you are subscribed. |
No long-term commitment. Upgrade, downgrade, or cancel anytime. Free Trial includes up to 50 requests.
Each endpoint returns specific product-related data. The Search Product endpoint provides a list of products with details like name, price, and ratings. The Product Details endpoint returns comprehensive information about a single product, including features and customer reviews. The Advanced Search endpoint offers broader search results across various categories.
Key fields in the response data include "name" (product title), "price" (current price), "asin" (Amazon Standard Identification Number), "url" (link to the product), "stars" (average rating), and "total_reviews" (number of reviews). These fields help users understand product offerings.
The response data is organized in JSON format. For example, the Search Product endpoint returns an array of product objects, each containing fields like "type," "position," "asin," "name," "image," "price," "stars," and "url." This structure allows easy parsing and integration into applications.
Parameters vary by endpoint. For the Search Product endpoint, you can use "query" (search term), "tld" (top-level domain), and "countryCode" (region). The Product Details endpoint requires "asin" to specify the product. Users can customize requests by adjusting these parameters to refine search results.
The Search Product endpoint provides product listings, while the Product Details endpoint offers in-depth information about a specific item, including features and reviews. The Advanced Search endpoint covers a wide range of categories, allowing users to explore various product types.
Users can utilize the returned data by integrating it into their applications for product displays, comparisons, or recommendations. For instance, the "url" field can link directly to Amazon for purchases, while "stars" and "total_reviews" can help users assess product quality.
Typical use cases include building e-commerce platforms, creating product comparison tools, developing affiliate marketing sites, and implementing price tracking applications. The API's comprehensive data supports various shopping-related functionalities.
Data accuracy is maintained through direct integration with Amazon's product catalog, ensuring real-time updates on pricing, availability, and product details. Regular quality checks and data validation processes help ensure the reliability of the information provided.
Zyla API Hub is like a big store for APIs, where you can find thousands of them all in one place. We also offer dedicated support and real-time monitoring of all APIs. Once you sign up, you can pick and choose which APIs you want to use. Just remember, each API needs its own subscription. But if you subscribe to multiple ones, you'll use the same key for all of them, making things easier for you.
Prices are listed in USD (United States Dollar), EUR (Euro), CAD (Canadian Dollar), AUD (Australian Dollar), and GBP (British Pound). We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the worldβs most reliable payment companies. If you have any trouble paying by card, just contact us at [email protected]
Additionally, if you already have an active subscription in any of these currencies (USD, EUR, CAD, AUD, GBP), that currency will remain for subsequent subscriptions. You can change the currency at any time as long as you don't have any active subscriptions.
The local currency shown on the pricing page is based on the country of your IP address and is provided for reference only. The actual prices are in USD (United States Dollar). When you make a payment, the charge will appear on your card statement in USD, even if you see the equivalent amount in your local currency on our website. This means you cannot pay directly with your local currency.
Occasionally, a bank may decline the charge due to its fraud protection settings. We suggest reaching out to your bank initially to check if they are blocking our charges. Also, you can access the Billing Portal and change the card associated to make the payment. If these does not work and you need further assistance, please contact our team at [email protected]
Prices are determined by a recurring monthly or yearly subscription, depending on the chosen plan.
API calls are deducted from your plan based on successful requests. Each plan comes with a specific number of calls that you can make per month. Only successful calls, indicated by a Status 200 response, will be counted against your total. This ensures that failed or incomplete requests do not impact your monthly quota.
Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.
To upgrade your current subscription plan, simply go to the pricing page of the API and select the plan you want to upgrade to. The upgrade will be instant, allowing you to immediately enjoy the features of the new plan. Please note that any remaining calls from your previous plan will not be carried over to the new plan, so be aware of this when upgrading. You will be charged the full amount of the new plan.
To check how many API calls you have left for the current month, refer to the βX-Zyla-API-Calls-Monthly-Remainingβ field in the response header. For example, if your plan allows 1,000 requests per month and you've used 100, this field in the response header will indicate 900 remaining calls.
To see the maximum number of API requests your plan allows, check the βX-Zyla-RateLimit-Limitβ response header. For instance, if your plan includes 1,000 requests per month, this header will display 1,000.
The βX-Zyla-RateLimit-Resetβ header shows the number of seconds until your rate limit resets. This tells you when your request count will start fresh. For example, if it displays 3,600, it means 3,600 seconds are left until the limit resets.
Yes, you can cancel your plan anytime by going to your account and selecting the cancellation option on the Billing page. Please note that upgrades, downgrades, and cancellations take effect immediately. Additionally, upon cancellation, you will no longer have access to the service, even if you have remaining calls left in your quota.
You can contact us through our chat channel to receive immediate assistance. We are always online from 8 am to 5 pm (EST). If you reach us after that time, we will get back to you as soon as possible. Additionally, you can contact us via email at [email protected]
To give you the opportunity to experience our APIs without any commitment, we offer a 7-day free trial that allows you to make up to 50 API calls at no cost. This trial can be used only once, so we recommend applying it to the API that interests you the most. While most of our APIs offer a free trial, some may not. The trial concludes after 7 days or once you've made 50 requests, whichever occurs first. If you reach the 50 request limit during the trial, you will need to "Start Your Paid Plan" to continue making requests. You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab. Alternatively, if you don't cancel your subscription before the 7th day, your free trial will end, and your plan will automatically be billed, granting you access to all the API calls specified in your plan. Please keep this in mind to avoid unwanted charges.
After 7 days, you will be charged the full amount for the plan you were subscribed to during the trial. Therefore, itβs important to cancel before the trial period ends. Refund requests for forgetting to cancel on time are not accepted.
When you subscribe to an API free trial, you can make up to 50 API calls. If you wish to make additional API calls beyond this limit, the API will prompt you to perform an "Start Your Paid Plan." You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab.
Payout Orders are processed between the 20th and the 30th of each month. If you submit your request before the 20th, your payment will be processed within this timeframe.
Service Level:
100%
Response Time:
635ms
Service Level:
100%
Response Time:
3,921ms
Service Level:
100%
Response Time:
991ms
Service Level:
100%
Response Time:
5,361ms
Service Level:
100%
Response Time:
386ms
Service Level:
64%
Response Time:
5,147ms
Service Level:
100%
Response Time:
224ms
Service Level:
50%
Response Time:
1,010ms
Service Level:
100%
Response Time:
2,923ms
Service Level:
100%
Response Time:
579ms