Google Online Sellers API
After recent changes sellers
parameter was deprecated. Now it's replaced with offers
.
To fetch Google product's online sellers from SerpApi, create a search with offers
parameter set to 1
. (I.e., offers=1
)
SerpApi Online Sellers JSON
{
...
"sellers_results": {
"online_sellers": [
{
"position": "String - Seller's position",
"name": "String - Seller's name",
"link": "String - Seller's product link",
"rating": "String - Seller's rating",
"base_price": "String - Seller's product base price",
"aditional_price": {
"tax": "String - Seller's product tax price",
"shipping": "String - Seller's product shipping price",
},
"total": "String - Seller's product total price"
},
]
}
}
Product Results for an iPhone 12

{
...
"sellers_results": {
"online_sellers": [
{
"position": 1,
"name": "Apple",
"link": "https://www.google.com/aclk?sa=L&ai=DChcSEwiSt_DkluvsAhVPvsAKHcGvBGIYABADGgJpbQ&sig=AOD64_2kcwE4StqPIQ90avDNaRX1E5W5Yw&ctype=5&q=&ved=0ahUKEwj__e3kluvsAhWFBc0KHYk6C7UQ2ikIJQ&adurl=",
"base_price": "$0.00 now+$33.30 for 30 mo",
"additional_price": {
"tax": "$0.00",
"shipping": "$88.91"
},
"total_price": "$1,087.91"
},
{
"position": 2,
"name": "AT&T",
"link": "https://www.google.com/aclk?sa=L&ai=DChcSEwiSt_DkluvsAhVPvsAKHcGvBGIYABACGgJpbQ&sig=AOD64_0xFCy4CxqNZPXff1gEvsHRj8BM_A&ctype=5&q=&ved=0ahUKEwj__e3kluvsAhWFBc0KHYk6C7UQ2ikIKw&adurl=",
"base_price": "$0.00 now+$33.34 for 30 mo",
"additional_price": {
"tax": "$0.00",
"shipping": "$89.02"
},
"total_price": "$1,089.22"
}
]
}
...
}