Amazon Product Advertising API

Amazon Product Advertising API allows developers to access Amazon's vast product catalog programmatically. This API provides comprehensive data, including product details, pricing, reviews, and availability.

## 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.

Documentación de la API

Endpoints


Get product list of search products



                                                                            
GET https://zylalabs.com/api/6430/amazon+product+advertising+api/9233/search+product
                                                                            
                                                                        

Search Product - Características del Endpoint

Objeto Descripción
query Opcional
tld [Requerido]
countryCode [Requerido]
Probar Endpoint

RESPUESTA DE EJEMPLO DE LA API

       
                                                                                                        
                                                                                                                                                                                                                            {"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...
                                                                                                                                                                                                                    
                                                                                                    

Search Product - CÓDIGOS DE EJEMPLO


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



                                                                            
GET https://zylalabs.com/api/6430/amazon+product+advertising+api/9235/product+details
                                                                            
                                                                        

Product details - Características del Endpoint

Objeto Descripción
asin Opcional
Probar Endpoint

RESPUESTA DE EJEMPLO DE LA API

       
                                                                                                        
                                                                                                                                                                                                                            {"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/...
                                                                                                                                                                                                                    
                                                                                                    

Product details - CÓDIGOS DE EJEMPLO


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



                                                                            
GET https://zylalabs.com/api/6430/amazon+product+advertising+api/9237/detailed+product+details
                                                                            
                                                                        

Detailed Product details - Características del Endpoint

Objeto Descripción
item_id [Requerido]
Probar Endpoint

RESPUESTA DE EJEMPLO DE LA API

       
                                                                                                        
                                                                                                                                                                                                                            {"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"}]}}
                                                                                                                                                                                                                    
                                                                                                    

Detailed Product details - CÓDIGOS DE EJEMPLO


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



                                                                            
GET https://zylalabs.com/api/6430/amazon+product+advertising+api/9238/advanced+search
                                                                            
                                                                        

Advanced Search - Características del Endpoint

Objeto Descripción
keywords Opcional
sortBy [Requerido] you could sort the data by `Relevance`, `AvgCustomerReviews`, `Featured`, `NewestArrivals`, `Price:HighToLow`, ` Price:LowToHigh`
itemPage [Requerido]
searchIndex [Requerido] 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
Probar Endpoint

RESPUESTA DE EJEMPLO DE LA API

       
                                                                                                        
                                                                                                                                                                                                                            {"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...
                                                                                                                                                                                                                    
                                                                                                    

Advanced Search - CÓDIGOS DE EJEMPLO


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' 


    

Clave de Acceso a la API y Autenticación

Después de registrarte, a cada desarrollador se le asigna una clave de acceso a la API personal, una combinación única de letras y dígitos proporcionada para acceder a nuestro endpoint de la API. Para autenticarte con el Amazon Product Advertising API simplemente incluye tu token de portador en el encabezado de Autorización.
Encabezados
Encabezado Descripción
Autorización [Requerido] Debería ser Bearer access_key. Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito.

Precios Simples y Transparentes

Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.

🚀 PLAN CORPORATIVO A MEDIDA

Comienza en
$ 10.000/Año


  • Volumen Personalizado
  • Límite de solicitudes personalizado
  • Soporte al Cliente Especializado
  • Monitoreo de API en Tiempo Real

Funciones favoritas de los clientes

  • ✔︎ Paga Solo por Solicitudes Exitosas
  • ✔︎ Prueba Gratuita de 7 Días
  • ✔︎ Soporte Multilenguaje
  • ✔︎ Una Clave API, Todas las APIs.
  • ✔︎ Panel de Control Intuitivo
  • ✔︎ Manejo de Errores Integral
  • ✔︎ Documentación Amigable para Desarrolladores
  • ✔︎ Integración con Postman
  • ✔︎ Conexiones HTTPS Seguras
  • ✔︎ Tiempo de Actividad Fiable

Amazon Product Advertising API FAQs

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.

General FAQs

Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.

Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]


Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.

La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.

Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]

Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.

Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.

Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.

Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.

Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.

Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.

El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.

Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.

Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]

Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.

Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.

Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.

Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.


APIs Relacionadas