How can I get the parent asin of an element?

To get an element’s variations, we need to pass the ASIN of its parent element. But, given the child, is it possible to get the parent ASIN through the Amazon product advertising API?

+3
source share
3 answers

Unfortunately, after a long search, I can say that it is impossible to get the parent ASIN through the current version (2011-08-02) of the Amazon product advertising API.

I hope that Amazon will provide this functionality in the future.

0
source

VariiationMatrix ResponseGroup. Amazon, ASIN ParentASIN . , ItemSearch, ItemLookup. ItemLookup ParentASIN, Variations, , ASIN, , ..

+6

If you have not found the answer yet, the following query helped me get the parent ASIN.

$baba_item = array(
'Operation' => 'ItemLookup',
'ItemId' => 'B003O6CB6S',  
'ResponseGroup' => 'Variations'
);

$baba_result =  $amazon->queryAmazon($baba_item);
$parentASINi= $baba_result->Items->Item->ParentASIN;
+3
source

All Articles