Page cover image

Related Questions Results

Scrape questions related to your Google query.

When you are asking a question on Google, chances are that Google will suggest some related questions as well. To access these related questions you can use the related_questions property from the API response. Each related question we scrape from Google is contained inside an object with the following properties:

Element
Type
Description

link

String

Query-string to link to the Google page

question

String

Text of the question

GET 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 questions found on the Google page.

Query Parameters

Name
Type
Description

q*

String

Is there a new season of futurama?

api_key*

String

<YOUR_API_KEY>

{
    ...
    "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?"
        }
    ],
    ...
}
Scrape Google Related Questions

Last updated