Google Images Suggested Searches API
The Google Images Suggested Searches API allows a user to scrape the results of Google Images search. SerpApi is able to make sense of this information and extract name
, link
, thumbnail
, and more.
JSON structure overview
{
"suggested_searches": [
{
"name": "String - suggested searches name",
"link": "String - Google search link original",
"chips": "String - Google chips parameter value",
"serpapi_link": "String - Link to SerpApi to fetch the suggested searches",
"thumbnail": "String - URL or base64 encoded image thumbnail displayed by Google"
},
...
],
}
Results for: Coffee

{
"suggested_searches": [
{
"name": "cup",
"link": "https://www.google.com/search?q=Coffee&tbm=isch&chips=q:coffee,g_1:cup:Zha3cvLlu_4%3D&hl=en-US&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQ4lYoAHoECAEQKw",
"chips": "q:coffee,g_1:cup:Zha3cvLlu_4%3D",
"serpapi_link": "https://serpapi.com/search.json?chips=q%3Acoffee%2Cg_1%3Acup%3AZha3cvLlu_4%253D&device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=Coffee",
"thumbnail": "<URL to image>"
},
{
"name": "wallpaper",
"link": "https://www.google.com/search?q=Coffee&tbm=isch&chips=q:coffee,g_1:wallpaper:SNsa4kO1QeY%3D&hl=en-US&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQ4lYoAXoECAEQLQ",
"chips": "q:coffee,g_1:wallpaper:SNsa4kO1QeY%3D",
"serpapi_link": "https://serpapi.com/search.json?chips=q%3Acoffee%2Cg_1%3Awallpaper%3ASNsa4kO1QeY%253D&device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=Coffee",
"thumbnail": "<URL to image>"
},
{
"name": "cafe",
"link": "https://www.google.com/search?q=Coffee&tbm=isch&chips=q:coffee,g_1:cafe:Z3V9iDLlllY%3D&hl=en-US&sa=X&ved=2ahUKEwjPuKOh2Zf-AhV7M1kFHeeMA9QQ4lYoAnoECAEQLw",
"chips": "q:coffee,g_1:cafe:Z3V9iDLlllY%3D",
"serpapi_link": "https://serpapi.com/search.json?chips=q%3Acoffee%2Cg_1%3Acafe%3AZ3V9iDLlllY%253D&device=desktop&engine=google_images&gl=us&google_domain=google.com&hl=en&q=Coffee",
"thumbnail": "<URL to image>"
},
...
]
}