> For the complete documentation index, see [llms.txt](https://docs.webscrapingapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.webscrapingapi.com/google-search-api/google-apis-response/google-search-api/product-results.md).

# Product Results

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:

<table><thead><tr><th width="239">Element</th><th width="113">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>title</code></td><td><code>String</code></td><td>Product title</td></tr><tr><td><code>reviews</code></td><td><code>Integer</code></td><td>Total number of reviews</td></tr><tr><td><code>rating</code></td><td><code>Float</code></td><td>Product score based on customer's rating</td></tr><tr><td><code>description</code></td><td><code>String</code></td><td>Product description</td></tr><tr><td><code>manufacturer</code></td><td><code>String</code></td><td>Product manufacturer</td></tr><tr><td><code>link</code></td><td><code>String</code></td><td>Link to product</td></tr><tr><td><code>name</code></td><td><code>String</code></td><td>Name of seller</td></tr><tr><td><code>user_reviews</code></td><td><code>Object</code></td><td>Reviews left by users</td></tr><tr><td>    <code>popular_questions</code></td><td><code>Array</code></td><td>-- Questions asked by Google users</td></tr></tbody></table>

### Product Results Request Example

## Request Example That Returns Product Elements

<mark style="color:blue;">`GET`</mark> `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<mark style="color:red;">\*</mark>        | String | `huawei p20`     |
| api\_key<mark style="color:red;">\*</mark> | String | `<YOUR_API_KEY>` |

{% tabs %}
{% tab title="200: OK API response" %}

```javascript
{
    ...
    "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?"
        ]
        }
    },
    ...
}
```

{% endtab %}
{% endtabs %}

<figure><img src="/files/vp95Jo2MRY8cbSYJBO7h" alt=""><figcaption><p>Scrape Google Product Results</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.webscrapingapi.com/google-search-api/google-apis-response/google-search-api/product-results.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
