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",
"thumbnail": "String - Displayed thumbnail of image"
},
...
}
Inline Images overview

{
...
"inline_images" : [
{
"link": "https://www.google.com/search?q=red+apple&tbm=isch&source=iu&ictx=1&fir=mloJwUc7l49CLM%253A%252C2zoOd3WfXEH9kM%252C_&vet=1&usg=AI4_-kSthucEyhXTCveZxP8PXtnIGjPoDA&sa=X&ved=2ahUKEwiA5",
"thumbnail": "<URL to image>"
},
{
"link": "https://www.google.com/search?q=red+apple&tbm=isch&source=iu&ictx=1&fir=wU1gnzIW2SpL7M%253A%252CS2q0jPa6nMOUnM%252C_&vet=1&usg=AI4_-kTF3xeYRFYWttQP6W0trptaSvjboQ&sa=X&ved=2ahUKEwiA5",
"thumbnail": "<URL to image>"
},
{
"link": "https://www.google.com/search?q=red+apple&tbm=isch&source=iu&ictx=1&fir=hCV0QoqCazgQ3M%253A%252CyEAjjroioD7w0M%252C_&vet=1&usg=AI4_-kSEMcJ_wc_hCcrHE8xx5QACipaOgg&sa=X&ved=2ahUKEwiA5",
"thumbnail": "<URL to image>"
},
...
]
...