Replies: 1 comment
-
Here is what you looking for (most likely): response = Products(credentials=credentials).get_competitive_pricing_for_asins(
asin_list=['B00T0C9XRK'], item_condition='New') And here is response.payload: [{'ASIN': 'B00T0C9XRK',
'Product': {'CompetitivePricing': {'CompetitivePrices': [{'CompetitivePriceId': '1',
'Price': {'LandedPrice': {'Amount': 4.99,
'CurrencyCode': 'USD'},
'ListingPrice': {'Amount': 4.99,
'CurrencyCode': 'USD'},
'Shipping': {'Amount': 0,
'CurrencyCode': 'USD'},
'belongsToRequester': False,
'condition': 'New',
'subcondition': 'New'}}],
'NumberOfOfferListings': [{'Count': 9,
'condition': 'New'},
{'Count': 9,
'condition': 'Any'}]},
'Identifiers': {'MarketplaceASIN': {'ASIN': 'B00T0C9XRK',
'MarketplaceId': 'ATVPDKIKX0DER'}},
'SalesRankings': [{'ProductCategoryId': 'beauty_display_on_website',
'Rank': 1},
{'ProductCategoryId': '11058611', 'Rank': 1}]},
'status': 'Success'}] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am getting a successful response in Product-API for get_competitive_pricing_for_asins. But I am not getting any attributes details in the response.
Products(account='US',marketplace= Marketplaces.US).get_product_pricing_for_asins(asin_list=['B00T0C9XRK'],item_condition='New')
[{'status': 'Success', 'ASIN': 'B00T0C9XRK', 'Product': {'Identifiers': {'MarketplaceASIN': {'MarketplaceId': 'ATVPDKIKX0DER', 'ASIN': 'B00T0C9XRK'}}}}]
Thank you
Beta Was this translation helpful? Give feedback.
All reactions