Overview
This node interacts with the Amazon Product Advertising API to retrieve product information. Specifically, the 'Get Items' operation allows users to fetch detailed data about Amazon items by providing their ASINs (Amazon Standard Identification Numbers). It supports specifying which resources (such as images, item info, offers) to retrieve, making it useful for applications needing detailed product data, like e-commerce platforms, price comparison tools, or inventory management systems.
Use Case Examples
- Fetch product details for a list of ASINs to display on a website.
- Retrieve pricing and availability information for items to update a catalog.
- Get product images and titles for marketing or listing purposes.
Properties
| Name | Meaning |
|---|---|
| Partner Tag | Amazon Partner Tag to associate requests with an affiliate account, overrides default if set. |
| Item IDs (for Get Items) | Comma-separated list of ASINs for the items to retrieve information about. |
| Resources | List of specific data fields to retrieve from the Amazon PA API for each item, such as images, item info, and offer details. |
Output
JSON
jsonbody- The full response body from the Amazon Product Advertising API containing the requested item data.
Dependencies
- amazon-paapi npm package
Troubleshooting
- Ensure the Partner Tag is provided either in the node parameter or in the credentials; otherwise, the node will throw an error.
- Item IDs must be provided for the 'Get Items' operation; missing this will cause an error.
- API request errors are caught and rethrown with descriptive messages; check the error details for troubleshooting.
- Verify that the credentials (Access Key, Secret Key, Partner Tag, Marketplace) are correctly set up and valid.