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 Amazon marketplaces. Specifically, the 'Get Prices' operation allows users to fetch current prices 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 product prices, compare prices across different marketplaces, or update pricing strategies based on real-time data.

Use Case Examples

  1. A seller wants to check the current prices of their products on Amazon.com (US) and Amazon.co.uk (UK) to adjust their pricing strategy.
  2. An analyst retrieves prices for multiple ASINs across several Amazon marketplaces to generate a competitive pricing report.

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 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 was fetched.
  • price - The current price of the product in the specified marketplace.
  • currency - The currency in which the price is denominated.
  • condition - The condition of the product (e.g., new, used) related to the price.

Dependencies

  • Amazon Selling Partner API credentials (API key and authentication tokens)

Troubleshooting

  • Ensure that the provided marketplace IDs are valid and supported by the Amazon Selling Partner API.
  • Verify that the ASINs are correctly formatted and exist in the selected marketplaces.
  • 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, correcting input parameters, or implementing retry logic with backoff.

Links

Discussion