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.

Related Searches Results JSON
{
                ...
                'related_searches': [
                    {
                        'query': 'String - The query of the search',
                        'link': 'String - Querystring to link to the google page'
                    }
                ],
                ...
}
Related Searches Results examples

Results Example

Related Searches Results example
GET external-link
https://api.searchdata.io/v1?engine=google&api_key=YOUR_API_KEY&q=Is%20there%20a%20new%20season%20of%20futurama%3F
Code to integrate
external-link
Json Example external-link
{
    ...
    "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"
        }
    ],
    ...
}