Amazon Product Other Sellers API
Amazon product pages may display Other Sellers offering the same product. These listings include price, delivery, rating, reviews, seller_feedback, and more.
When SerpApi encounters Other Sellers, they are added to the JSON output as the other_sellers array.
The API endpoint is https://serpapi.com/search?engine=amazon_product
Head to the playground for a live and interactive demo.
API Examples
Other Sellers overview
{
...
"other_sellers": [
{
"position": 1,
"link": "https://www.amazon.com/gp/help/customer/display.html?nodeId=GQ6B6RH72AX8D2TD&ref_=dp_hp&language=en_US",
"rating": 3.5,
"reviews": 214,
"discount": "-16%",
"price": "$48.00",
"extracted_price": 48.0,
"price_unit": "$0.47",
"extracted_price_unit": 0.47,
"old_price": "$56.99",
"extracted_old_price": 56.99,
"delivery": [
"$12.99 delivery November 26 - 28. Details"
],
"ship_from": "US Best Choice",
"sold_by": "US Best Choice",
"seller_feedback": "57% positive over last 12 months"
},
{
"position": 2,
"link": "https://www.amazon.com/gp/help/customer/display.html?nodeId=GQ6B6RH72AX8D2TD&ref_=dp_hp&language=en_US",
"rating": 3,
"reviews": 106,
"discount": "-14%",
"price": "$49.00",
"extracted_price": 49.0,
"price_unit": "$0.48",
"extracted_price_unit": 0.48,
"old_price": "$56.99",
"extracted_old_price": 56.99,
"delivery": [
"$15.74 delivery November 28 - December 1. Details"
],
"ship_from": "Chastain's Store",
"sold_by": "Chastain's Store",
"seller_feedback": "49% positive over last 12 months"
},
{
"position": 3,
"link": "https://www.amazon.com/gp/help/customer/display.html?nodeId=GQ6B6RH72AX8D2TD&ref_=dp_hp&language=en_US",
"rating": 3.5,
"reviews": 31,
"discount": "-12%",
"price": "$50.09",
"extracted_price": 50.09,
"price_unit": "$0.49",
"extracted_price_unit": 0.49,
"old_price": "$56.99",
"extracted_old_price": 56.99,
"delivery": [
"$16.99 delivery November 25 - 26. Details"
],
"ship_from": "AAA Sports Apparel",
"sold_by": "AAA Sports Apparel",
"seller_feedback": "59% positive over last 12 months"
},
...
],
...
}
JSON structure overview
{
"other_sellers": [
{
"position": "Integer - Position in sellers list",
"link": "String - Seller help/info link",
"price": "String - Product price from this seller",
"extracted_price": "Float - Extracted numeric price",
"price_unit": "String - Price per unit",
"extracted_price_unit": "Float - Extracted numeric price per unit",
"old_price": "String - Original price before discount",
"extracted_old_price": "Float - Extracted numeric original price",
"discount": "String - Discount percentage (e.g., '-16%')",
"delivery": [
"String - Delivery options and dates"
],
"rating": "Float - Seller rating",
"reviews": "Integer - Number of seller reviews",
"ship_from": "String - Name of the shipping entity",
"sold_by": "String - Name of the selling entity",
"seller_feedback": "String - Seller feedback summary (e.g., '57% positive over last 12 months')",
"notes": [
"String - Additional seller notes"
]
},
...
]
}