Amazon Selling Partner icon

Amazon Selling Partner

Interact with Amazon Selling Partner API

Overview

This node interacts with the Amazon Selling Partner API to retrieve pricing information for products listed on various Amazon marketplaces. Specifically, the 'Get Prices' operation under the 'Prices' resource allows users to fetch current price details for products identified by their ASINs (Amazon Standard Identification Numbers) across selected Amazon marketplaces. This is useful for sellers or analysts who want to monitor or compare product prices across different regions or marketplaces. For example, a seller can use this node to get the latest prices of their products on Amazon.com (US) and Amazon.co.uk (UK) to adjust their pricing strategy accordingly.

Use Case Examples

  1. A seller wants to monitor the prices of their products on Amazon.com and Amazon.co.uk to stay competitive.
  2. An analyst retrieves price data for multiple ASINs across different marketplaces to analyze market trends.

Properties

Name Meaning
Marketplace IDs Select the Amazon marketplaces from which to retrieve product prices. Each marketplace corresponds to a specific region or country, such as Amazon.com (US) or Amazon.co.uk (UK). This property is required and supports multiple selections.
ASIN The Amazon Standard Identification Number(s) for the product(s) whose prices are to be retrieved. Multiple ASINs can be provided as a comma-separated string. This property is required.

Output

JSON

  • asin - The ASIN of the product for which the price information is retrieved.
  • marketplaceId - The identifier of the Amazon marketplace from which the price data is fetched.
  • price - The current price details of the product, which may include currency and amount.
  • condition - The condition of the product (e.g., new, used) related to the price information.
  • fulfillmentChannel - The fulfillment channel (e.g., Amazon fulfillment, merchant fulfillment) associated with the price.

Dependencies

  • Amazon Selling Partner API credentials

Troubleshooting

  • Ensure that the provided ASINs are valid and correctly formatted as comma-separated values if multiple ASINs are used.
  • Verify that the selected marketplace IDs correspond to valid and active Amazon marketplaces accessible with the provided credentials.
  • Check that the Amazon Selling Partner API credentials are correctly configured and have the necessary permissions to access pricing data.
  • Common error messages may include authentication failures, invalid marketplace IDs, or rate limiting by the Amazon API. Resolving these typically involves verifying credentials, ensuring correct marketplace selections, and implementing retry logic or rate limiting handling in workflows.

Links

Discussion