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&udm=2&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": "https://serpapi.com/searches/681d2535d1a72bb7d6f42782/images/e5a4c714a57bae0daec670cc4ac59ed2fd481005c9f2645e72eca750b9ef851d.jpeg"
    },
    {
      "link": "https://www.google.com/search?q=wallpaper+coffee&udm=2&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": "https://serpapi.com/searches/681d2535d1a72bb7d6f42782/images/e5a4c714a57bae0daec670cc4ac59ed28a0ec7e6285d79479e5302ea6beb5b81.jpeg"
    },
    {
      "link": "https://www.google.com/search?q=cafe+coffee+%25&udm=2&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": "https://serpapi.com/searches/681d2535d1a72bb7d6f42782/images/e5a4c714a57bae0daec670cc4ac59ed2cfd7fd6292465a3619e0d41bfc980e4a.jpeg"
    }
  ]
}