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 name, image, query, link, and serpapi_link.


The API endpoint is https://serpapi.com/search?engine=google_light

Head to the playground for a live and interactive demo.

API Examples

Example with q: Coffee

Example with q: Coffee

JSON Example

{
  ...
  "related_searches": [
    {
      "items": [
        {
          "name": "Espresso",
          "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRiFJbi1SBP4aMfHdOMTPAiF04bODuA6MsXO1JTQVEEUKa6lhPtJs-j&s=0",
          "link": "https://www.google.com/search?sca_esv=3e9af22413474066&gl=us&hl=en&gbv=1&q=Espresso&stick=H4sIAAAAAAAAAAFVAKr_CDEiCC9tLzBjdGZr-gEAsAQAogUIRXNwcmVzc2_aBhkAu6KI-QRFvzGxOTOxshbjtwf6R_19ZpipoggWUGVvcGxlIGFsc28gc2VhcmNoIGZvcqgIAd6bgQFVAAAA&sa=X&ved=2ahUKEwjktY_9-6-PAxXDEkQIHZuQAdAQs9oBegQICBAF",
          "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Espresso"
        },
        {
          "name": "Iced coffee",
          "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRfOVZ6ZSAGgn2zdlUrTxV7pliVp_ZCCxSmklaZ0DabKL7UjgviBfWz&s=0",
          "link": "https://www.google.com/search?sca_esv=3e9af22413474066&gl=us&hl=en&gbv=1&q=Iced+coffee&stick=H4sIAAAAAAAAAAFZAKb_CDEiCS9tLzA1a2J2MfoBALAEAKIFC0ljZWQgY29mZmVl2gYZALuiiPkERb8xsTkzsbIW47cH-kf9fWaYqaIIFlBlb3BsZSBhbHNvIHNlYXJjaCBmb3KoCAHF_si7WQAAAA&sa=X&ved=2ahUKEwjktY_9-6-PAxXDEkQIHZuQAdAQs9oBegQICBAG",
          "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Iced+coffee"
        },
        ...
      ]
    },
    {
      "query": "Coffee near me",
      "link": "https://www.google.com/search?sca_esv=3e9af22413474066&gl=us&hl=en&gbv=1&q=Coffee+near+me&sa=X&ved=2ahUKEwjktY_9-6-PAxXDEkQIHZuQAdAQ1QJ6BAgIEAo",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Coffee+near+me"
    },
    {
      "query": "Coffee types",
      "link": "https://www.google.com/search?sca_esv=3e9af22413474066&gl=us&hl=en&gbv=1&q=Coffee+types&sa=X&ved=2ahUKEwjktY_9-6-PAxXDEkQIHZuQAdAQ1QJ6BAgIEAw",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Coffee+types"
    },
    {
      "query": "Coffee brands",
      "link": "https://www.google.com/search?sca_esv=3e9af22413474066&gl=us&hl=en&gbv=1&q=Coffee+brands&sa=X&ved=2ahUKEwjktY_9-6-PAxXDEkQIHZuQAdAQ1QJ6BAgIEA4",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_light&gl=us&google_domain=google.com&hl=en&q=Coffee+brands"
    },
    ...
  ],
  ...
}

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",
      "items": [
        {
          "name": "String - Name of the item",
          "image": "String - Image of the item",
          "link":  "String - Link to the Google search",
          "serpapi_link":  "String - SerpApi Link of the Google search"
        }
      ],
    },
  ],
}