WebScrapingAPI Docs
HomeLoginRegister
  • Introduction
    • Registration
    • Pricing
    • Free APIs
    • API Errors
    • Custom Response Headers
  • Browser API
    • Getting Started
      • Access the API
      • Authentication
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
      • Proxy Mode
    • Advanced API Features
      • Awaiting
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Custom Headers
      • Custom Cookies
      • Device Type
      • Viewport Sizing
      • Screenshot
      • Screenshot Options
      • Extraction Rules
      • JavaScript Instructions
      • Full JSON Response
      • JSON DOM Response
      • Block Resources
      • Captcha Solving
  • WebScrapingAPI
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
    • Advanced API Features
      • Geolocation
      • Extraction Rules
      • Full JSON Response
      • JSON DOM Response
      • Rendering JavaScript
  • WebStealthProxy
    • Getting Started
      • Access the Proxy
      • Usage and Statistics
    • Basic Proxy Requests
    • Advanced Proxy Requests
      • Sessions
      • Geolocation
      • Custom Headers
      • Custom Cookies
      • Screenshots
  • Google Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Google Search Engines
      • Google Search API
      • Google Maps API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Trends API
        • Geo Parameter Options List
        • Google Trends Categories List
  • WB CUSTOM SEARCH API
    • Getting Started
      • Access the API
      • API Parameters
    • WB Custom Search Engines
      • Wayfair Product API
      • Best Buy Product API
      • Nordstrom Product API
  • Amazon Search API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search Types
      • Amazon Search
      • Amazon Seller
        • Amazon Seller Products
        • Amazon Seller Profile
        • Amazon Seller Feedback
      • Amazon Product
      • Amazon Category
      • Amazon Bestsellers
      • Amazon New Releases
      • Amazon Deals
  • Bing Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
Powered by GitBook
On this page
  • Product Results Request Example
  • Request Example That Returns Product Elements
  1. Google Search API
  2. Google APIs Response
  3. Google Search API

Product Results

Scrape Google Product Results and get real time information on product specifications.

Sometimes if you search for a product, Google may return product boxes with more information about your search. To access this information you can use the product_results property of the API response. The full body of the property includes:

Element
Type
Description

title

String

Product title

reviews

Integer

Total number of reviews

rating

Float

Product score based on customer's rating

description

String

Product description

manufacturer

String

Product manufacturer

link

String

Link to product

name

String

Name of seller

user_reviews

Object

Reviews left by users

popular_questions

Array

-- Questions asked by Google users

Product Results Request Example

Request Example That Returns Product Elements

GET https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q=huawei%20p20

This is a basic GET request that returns the product results found on the Google page.

Query Parameters

Name
Type
Description

q*

String

huawei p20

api_key*

String

<YOUR_API_KEY>

{
    ...
    "product_results": {
        "title": "Huawei P30 lite",
        "reviews": 6,
        "rating": 4.6,
        "description": "Discover a new and better way to capture the world with the incredible Huawei P30 lite Dual-SIM Mobile Phone. It is crafted with outstanding attention to detail and is a delight to behold.",
        "manufacturer": {
        "link": "https://consumer.huawei.com/ca/phones/p30-lite/",
        "name": "consumer.huawei.com"
        },
        "user_reviews": {
        "popular_questions": [
            "Show all reviews",
            "Is it user friendly?",
            "How long does the battery last?",
            "How is the weight of this phone?",
            "Can this phone handle drops?",
            "Do I need to buy a case?"
        ]
        }
    },
    ...
}

Last updated 6 months ago

Scrape Google Product Results