Google Images Related Searches API

The Google Images Related Searches API allows a user to scrape the results of Google Images search. SerpApi is able to make sense of this information and extract query, link, thumbnail, and more.

JSON structure overview

{
  "related_searches": [
    {
      "query": "String - suggested searches query",
      "link": "String - Google Images search link original",
      "serpapi_link": "String - Link to SerpApi to fetch the related images searches",
      "thumbnail": "String - URL of an image"
    },
    ...
  ]
}

Results for: Coffee

Results for: Coffee

JSON Example

{
  "related_searches": [
    {
      "link": "https://www.google.com/search?q=cup+coffee&tbm=isch&hl=en&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQrNwCKAB6BQgBEJYE",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=cup+coffee",
      "query": "cup coffee",
      "highlighted_words": [
        "cup"
      ],
      "thumbnail": "<URL to image>"
    },
    {
      "link": "https://www.google.com/search?q=wallpaper+coffee&tbm=isch&hl=en&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQrNwCKAB6BQgBEJgE",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=wallpaper+coffee",
      "query": "wallpaper coffee",
      "highlighted_words": [
        "wallpaper"
      ],
      "thumbnail": "<URL to image>"
    },
    {
      "link": "https://www.google.com/search?q=cafe+coffee+%25&tbm=isch&hl=en&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQrNwCKAB6BQgBEJoE",
      "serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=cafe+coffee+%25",
      "query": "cafe coffee %",
      "highlighted_words": [
        "cafe",
        "%"
      ],
      "thumbnail": "<URL to image>"
    }
  ]
}