Related Questions Results

When you are asking a question on google, chances are that google will suggest some related questions as well. To retrieve these related questions you can use the related_questions property from the API response.

Related Questions Results JSON
{
                ...
                'related_questions': [
                    {
                        'link': 'String - Querystring to link to the google page',
                        'question': 'String - Text of the question'
                    }
                ],
                ...
}
Related Questions Results examples

Results Example

Related Questions 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_questions": [
        {
        "link": "/search?q=Is+Futurama+getting+a+new+season%3F&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQzmd6BAgUEAU",
        "question": "Is Futurama getting a new season?"
        },
        {
        "link": "/search?q=Is+there+a+Futurama+season+10%3F&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQzmd6BAgKEAU",
        "question": "Is there a Futurama season 10?"
        }
    ],
    ...
}