php - Retrieval of fba sellers from amazon (api) -
Can I get the count of FBA vendors for a product via API?
User can input the product by name and Amazon API, we have to retrieve the FBA count for that product if yes you can refer to the documentation link
please Tell me that you need more details ...
The documentation has been given here:
The operation you need to run is called GetCompetitivePricingForASIN
and / Or GetLowestOfferListingsForASIN
Here you can download many example libs:
You will receive a part of the response (in GetCompetitivePricingForASIN) :
& lt; NumberOfOfferListings & gt; & Lt; OfferLestingCount Status = "Any" & gt; 11 & lt; / OfferListingCount & gt; & Lt; OfferLestingCount Status = "used" & gt; 1 & lt; / OfferListingCount & gt; & Lt; OfferLestingCount Status = "New" & gt; 10 & lt; / OfferListingCount & gt; & Lt; / NumberOfOfferListings & gt;
and GetLowestOfferListingsForASIN:
& lt; FulfillmentChannel & gt; Merchant & lt; / FulfillmentChannel & gt;
You can then calculate the number of merchant / Amazon Sellers
Comments
Post a Comment