# Related Searches Results

When you perform a search on Google you may sometimes get some related searches along with the results as well. You can retrieve these related searches through the `related_searches` property from the API response. The properties of each related search results are:

<table><thead><tr><th width="140">Element</th><th width="108">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>link</code></td><td><code>String</code></td><td>Query-string to link to the Google page </td></tr><tr><td><code>query</code></td><td><code>String</code></td><td>Text of related search</td></tr></tbody></table>

### Related Searches Results Request Example

## Request Example That Returns Related Searches Elements

<mark style="color:blue;">`GET`</mark> `https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q=Is%20there%20a%20new%20season%20of%20futurama%3F`

This is a basic GET request that returns the related searches found on the Google page.

#### Query Parameters

| Name                                       | Type   | Description                          |
| ------------------------------------------ | ------ | ------------------------------------ |
| q                                          | String | `Is there a new season of futurama?` |
| api\_key<mark style="color:red;">\*</mark> | String | `<YOUR_API_KEY>`                     |

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

```javascript
{
    ...
    "related_searches": [
        {
        "query": "futurama season 10",
        "link": "/search?q=Futurama+season+10&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwFXoECCgQAQ"
        },
        {
        "query": "futurama season 11",
        "link": "/search?q=Futurama+season+11&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwFnoECCcQAQ"
        },
        {
        "query": "futurama new season 2021",
        "link": "/search?q=Futurama+new+season+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwF3oECCYQAQ"
        },
        {
        "query": "how many seasons of futurama",
        "link": "/search?q=How+many+seasons+of+Futurama&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGHoECCUQAQ"
        },
        {
        "query": "futurama season 8",
        "link": "/search?q=Futurama+season+8&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGXoECCAQAQ"
        },
        {
        "query": "will futurama return 2020",
        "link": "/search?q=Will+Futurama+return+2020&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGnoECCMQAQ"
        },
        {
        "query": "is futurama coming back in 2021",
        "link": "/search?q=Is+Futurama+coming+back+in+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwG3oECCEQAQ"
        },
        {
        "query": "futurama reboot 2021",
        "link": "/search?q=Futurama+reboot+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwHHoECB8QAQ"
        }
    ],
    ...
}
```

{% endtab %}
{% endtabs %}

<figure><img src="/files/ob3f9NiCfEsJsntpqIII" alt=""><figcaption><p>Scrape Google Related Searches</p></figcaption></figure>


---

# Agent Instructions: 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:

```
GET https://docs.webscrapingapi.com/google-search-api/google-apis-response/google-search-api/related-searches-results.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
