Google Inline Images API
For some searches, Google search includes a inline images. SerpApi is able to scrape, extract, and make sense of this information.
API Examples
JSON structure overview
{
...
"inline_images": [
{
"link": "String - Link to image search",
"source": "String - Source URL of the website containing the image result",
"thumbnail": "String - Displayed thumbnail of image"
},
],
"inline_images_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 of an image"
},
]
...
}
Inline Images overview
{
...
"inline_images" : [
{
"link": "https://www.google.com/search?q=red apple&tbm=isch&source=iu&ictx=1&fir=mloJwUc7l49CLM%3A%2C2zoOd3WfXEH9kM%2C_&vet=1&usg=AI4_-kSthucEyhXTCveZxP8PXtnIGjPoDA&sa=X&ved=2ahUKEwiA5",
"source": "https://theoliveandthestone.com/red-apple-balsamic/",
"thumbnail": "<URL to thumbnail>",
"original": "<URL to original image>",
"title": "<Title of the source>"
},
{
"link": "https://www.google.com/search?q=red apple&tbm=isch&source=iu&ictx=1&fir=wU1gnzIW2SpL7M%3A%2CS2q0jPa6nMOUnM%2C_&vet=1&usg=AI4_-kTF3xeYRFYWttQP6W0trptaSvjboQ&sa=X&ved=2ahUKEwiA5",
"source": "https://pinkdot.com/products/red-apple",
"thumbnail": "<URL to thumbnail>",
"original": "<URL to original image>",
"title": "<Title of the source>"
},
{
"link": "https://www.google.com/search?q=red apple&tbm=isch&source=iu&ictx=1&fir=hCV0QoqCazgQ3M%3A%2CyEAjjroioD7w0M%2C_&vet=1&usg=AI4_-kSEMcJ_wc_hCcrHE8xx5QACipaOgg&sa=X&ved=2ahUKEwiA5",
"source": "https://waapple.org/varieties/red-delicious/",
"thumbnail": "<URL to thumbnail>",
"original": "<URL to original image>",
"title": "<Title of the source>"
},
...
],
"inline_images_suggested_searches": [
{
"name": "clipart",
"link": "https://www.google.com/search?hl=en&gl=us&q=red apple&tbm=isch&chips=q:red apple,g_1:clipart:jTi_vOv7H94=&usg=AI4_-kT5OUe_o-ifDw9Xq_lgzNv2p-dqRw&sa=X&ved=2ahUKEwjkjs2J0fX4AhWeSTABHTbkAsoQgIoDKAB6BAgDEA4",
"chips": "q:red apple,g_1:clipart:jTi_vOv7H94=",
"serpapi_link": "http://serpapi.com/search.json?chips=q:red+apple,g_1:clipart:jTi_vOv7H94%3D&device=desktop&engine=google&gl=us&google_domain=google.com&hl=en&location=Austin, Texas, United States&q=red apple",
"thumbnail": "http://serpapi.com/searches/62ce9b4a94489311bdac6d45/images/5002c6356e4b37eb75469667127e4a51c39ce782253aac12ac2aa39edfa7d90146ccedeffe21bf8f7b80e4cf21d51b94.png"
},
{
"name": "wallpaper",
"link": "https://www.google.com/search?hl=en&gl=us&q=red apple&tbm=isch&chips=q:red apple,g_1:wallpaper:NjjBdYZ1ARw=&usg=AI4_-kTRCPoPiQxK794uAoINALw52WmmOA&sa=X&ved=2ahUKEwjkjs2J0fX4AhWeSTABHTbkAsoQgIoDKAF6BAgDEBI",
"chips": "q:red apple,g_1:wallpaper:NjjBdYZ1ARw=",
"serpapi_link": "http://serpapi.com/search.json?chips=q:red+apple,g_1:wallpaper:NjjBdYZ1ARw%3D&device=desktop&engine=google&gl=us&google_domain=google.com&hl=en&location=Austin, Texas, United States&q=red apple",
"thumbnail": "http://serpapi.com/searches/62ce9b4a94489311bdac6d45/images/5002c6356e4b37eb75469667127e4a51c39ce782253aac12ac2aa39edfa7d90163e5fa1285b65a4e30d37d43f5735a01.jpeg"
}
...
]
...