Google Light Related Searches API

SerpApi is able to scrape, extract, and make sense of related searches results for certain search queries.

When SerpApi encounters related searches results, we add them to our JSON output as the array related_searches.

For each related searches result, we are able to extract its query, link, and serpapi_link.

Example with q: latest hurricane

Example with q: latest hurricane

JSON Example

{
  ...
  "related_searches": [
    {
      "query": "Latest hurricane tracker",
      "link": "https://www.google.com/search?sca_esv=a03d90e6355dafdc&sca_upv=1&hl=en&gbv=1&gl=us&q=Latest+hurricane+tracker&sa=X&ved=2ahUKEwjywOT11ZKGAxVPJUQIHanlCYcQ1QJ6BAgCEAI",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Latest+hurricane+tracker"
    },
    {
      "query": "Hurricane coming this weekend",
      "link": "https://www.google.com/search?sca_esv=a03d90e6355dafdc&sca_upv=1&hl=en&gbv=1&gl=us&q=Hurricane+coming+this+weekend&sa=X&ved=2ahUKEwjywOT11ZKGAxVPJUQIHanlCYcQ1QJ6BAgCEAQ",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Hurricane+coming+this+weekend"
    },
    {
      "query": "Latest hurricane gulf of mexico",
      "link": "https://www.google.com/search?sca_esv=a03d90e6355dafdc&sca_upv=1&hl=en&gbv=1&gl=us&q=Latest+hurricane+gulf+of+mexico&sa=X&ved=2ahUKEwjywOT11ZKGAxVPJUQIHanlCYcQ1QJ6BAgCEAY",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Latest+hurricane+gulf+of+mexico"
    },
    ...
  ],
  ...
}

JSON structure overview

{
  "related_searches": [
    {
      "query": "String - Query of the related search",
      "link":  "String - Link to the Google search",
      "serpapi_link":  "String - SerpApi Link of the Google search",
    },
  ],
}