Google Online Sellers API

Deprecated

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).

API Examples

JSON structure overview

{
  ...
  "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",
        },
        "installments": "String - Number of monthly installments",
        "total": "String - Seller's product total price",
        "condition": "String - Second Hand Condition of product"
      },
    ]
  },
  ...
}

Results for: iPhone 12

Results for: iPhone 12

JSON Example

{
  ...
  "sellers_results": {
    "online_sellers": [
      {
        "position": 1,
        "name": "Gamestop",
        "link": "https://www.google.com/url?q=https://www.gamestop.com/deals/products/iphone-12-pro-max-128gb---att-silver/238805.html%3Futm_source%3Dgoogle%26utm_medium%3Dfeeds%26utm_campaign%3Dunpaid_listings%26a%3D1&sa=U&ved=0ahUKEwiYqfvHt774AhUFhuAKHRIPCsMQ2ykIJA&usg=AOvVaw2sFAZNjMN7XByXawdU4hP8",
        "base_price": "$682.99",
        "additional_price": {
          "shipping": "$0.00",
          "tax": "$60.79"
        },
        "total_price": "$743.78",
        "condition": "Refurbished"
      },
      {
        "position": 2,
        "name": "Back Market",
        "link": "https://www.google.com/url?q=https://www.backmarket.com/tested-and-certified-used-iphone-12-pro-128-gb-silver-att/152456.html%3Fshopping%3Dgmc&sa=U&ved=0ahUKEwiYqfvHt774AhUFhuAKHRIPCsMQ2ykIKg&usg=AOvVaw2ph3svOxLdwbf3qxgBolWB",
        "base_price": "$734.00",
        "additional_price": {
          "shipping": "$5.99",
          "tax": "$62.39"
        },
        "total_price": "$802.38",
        "condition": "Refurbished"
      },
      {
        "position": 3,
        "name": "Buyr.com",
        "link": "https://www.google.com/url?q=https://www.buyr.com/product/apple-iphone-12-pro-at-t-no-contract/bp/PUE3KWA&sa=U&ved=0ahUKEwiYqfvHt774AhUFhuAKHRIPCsMQ2ykILw&usg=AOvVaw1W5a-6cVv8eN_p7bbGqoY8",
        "base_price": "$899.99",
        "additional_price": {
          "shipping": "$0.00",
          "tax": "$76.50"
        },
        "total_price": "$976.49"
      }
    ]
  },
  ...
}