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:

ElementTypeDescription

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

NameTypeDescription

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