Scrapingdog

Google Immersive Product API

The Google Immersive Product API scrapes Google product results from the immersive popup view, returning brand info, price range, and store-level listings with ratings and reviews.

Endpoint: https://api.scrapingdog.com/google_immersive_product

API Parameters

πŸ”‘

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
πŸ”—

Request Parameters

  • page_token Required
    This parameter specifies the token required to display additional product details in Google's immersive popup.

    Type: String
πŸ“„

Sellers Pagination

  • stores Optional
    This parameter enables the pagination to get more sellers. Pass true to enable it. It can only be used with sori parameter.

    Default: false

    Type: String
  • sori Optional
    This parameter works together with the stores parameter to fetch the next page of seller results. Its value depends on how many sellers were returned in the previous API responses.

    Example:

    If your last two API responses included 5-5 sellers each, set sori=10 in your next API call to continue from the next set of sellers.

    Type: String
🌍

Geographic Location and Localization

  • country Optional
    This parameter specifies the country for the Google search using a two-letter country code (e.g., US for the United States, UK for the United Kingdom, or FR for France). For a complete list of supported countries, see the Google Country Parameter.

    Default Value - us

    Type - String
  • language Optional
    Language of the results. Possible Values - en, es, fr, de, etc. For a complete list of supported languages, see the Google Language Page.

    Default Value - en

    Type - String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_immersive_product?api_key=APIKEY&page_token=PAGE_TOKEN"
API Response
{
  "title": "FOLGERS GROUND COFFEE CLASSIC ROAST",
  "brand": "Folgers",
  "reviews": 13269,
  "rating": "4.6",
  "price_range": "$5.88 - $8.49",
  "stores": [
    {
      "name": "Walmart",
      "link": "https://www.walmart.com/ip/Folgers-Classic-Roast",
      "price": "$6.53",
      "ratings": "4.3/5",
      "reviews": "908"
    },
    {
      "name": "Target",
      "link": "https://www.target.com/p/folgers-classic",
      "price": "$6.49",
      "ratings": "4.6/5",
      "reviews": "318"
    }
  ]
}