Google Images Scraper avatar

Google Images Scraper

Pricing

$4.99/month + usage

Go to Apify Store
Google Images Scraper

Google Images Scraper

Scrape Google Images search results including image URLs, thumbnails, source pages, titles, and dimensions

Pricing

$4.99/month + usage

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

9

Total users

2

Monthly active users

3 days ago

Last modified

Share

Features

  • Image URLs: Extracts direct full-size image URLs and thumbnail URLs for every result
  • Source Pages: Captures the source website URL where each image is hosted
  • Image Dimensions: Records width and height in pixels for each image
  • Titles & Alt Text: Extracts image titles and alt text descriptions
  • Source Domain & Favicon: Records the domain name and favicon of each source website
  • High Volume Scraping: Supports up to 10,000 image results per query
  • Localization Support: Supports country and language parameters for region-specific image results
  • Proxy Support: Built-in Apify Proxy with residential proxies for reliable image search access

Input Parameters

ParameterTypeRequiredDefaultDescription
queryStringYes"sunset photography"The image search term to use
maxItemsIntegerNo100Maximum number of image results to retrieve (1–10000)
glStringNo"us"Google country code for localized results
hlStringNo"en"UI language code for the results
proxyConfigurationObjectNoApify ResidentialProxy settings for the scraper

Input Schema Example

{
"query": "mountain landscape photography",
"maxItems": 200,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output Schema

The scraper outputs structured JSON data for each image result found on Google Images.

Main Fields

FieldTypeDescription
positionIntegerPosition of the image in the search results
titleStringTitle or alt text of the image
sourceUrlStringURL of the page where the image is hosted
imageUrlStringDirect URL to the full-size image
thumbnailUrlStringURL of the thumbnail image
sourceStringSource website name
sourceDomainStringDomain of the source website
faviconStringFavicon URL of the source website
widthIntegerImage width in pixels
heightIntegerImage height in pixels
altStringAlternative text for the image
searchQueryStringThe search query used to find this image
searchUrlStringThe Google Images search URL
scrapedAtStringTimestamp when the data was scraped

Image Result Example

{
"position": 1,
"title": "Beautiful Sunset Over the Mountains",
"sourceUrl": "https://www.nationalgeographic.com/photography/article/sunset",
"imageUrl": "https://i.natgeofe.com/n/12345/sunset-mountains.jpg",
"thumbnailUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR...",
"source": "National Geographic",
"sourceDomain": "nationalgeographic.com",
"favicon": "https://www.nationalgeographic.com/favicon.ico",
"width": 1920,
"height": 1080,
"alt": "Vibrant orange and purple sunset over mountain peaks",
"searchQuery": "sunset photography",
"searchUrl": "https://www.google.com/search?q=sunset+photography&tbm=isch",
"scrapedAt": "2025-01-15T10:30:00.000Z"
}