Google Images Scraper
Pricing
$4.99/month + usage
Go to Apify Store
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
Maintained by Community
Actor stats
0
Bookmarked
7
Total users
3
Monthly active users
23 days ago
Last modified
Categories
Share
Apify Actor that scrapes Google Images search results. Extracts image URLs, thumbnail URLs, source page links, titles, dimensions, and source domains.
Features
- Search Google Images with any query
- Extract full-resolution image URLs and thumbnails
- Get image dimensions (width × height)
- Localized results with country and language params
- Filter by image size, type, and color
- CAPTCHA detection and session rotation
- Automatic scrolling to load more results
- Residential proxy support for reliable access
Input
| Field | Type | Default | Description |
|---|---|---|---|
query | string | "sunset photography" | Image search term |
maxItems | integer | 100 | Maximum results to return |
gl | string | - | Two-letter country code for localized results (e.g. us, in, uk) |
hl | string | - | Two-letter language code (e.g. en, es, de) |
imageSize | enum | "any" | Size filter: any, large, medium, icon |
imageType | enum | "any" | Type filter: any, photo, clipart, lineart, animated |
imageColor | enum | "any" | Color filter: any, color, bw |
proxyConfiguration | object | Apify Residential | Proxy settings (residential recommended) |
Example input
{"query": "sunset photography","maxItems": 100,"gl": "us","hl": "en","imageSize": "large"}
Output
Each result in the dataset contains the following fields:
| Field | Type | Description |
|---|---|---|
position | integer | Result position (1-based) |
title | string | Image title/caption |
sourceUrl | string | URL of the page containing the image |
imageUrl | string | Direct URL to the full-resolution image |
thumbnailUrl | string | Google's thumbnail URL |
source | string | Source domain name |
width | integer | Image width in pixels |
height | integer | Image height in pixels |
searchQuery | string | The query used |
searchUrl | string | The Google Images URL crawled |
scrapedAt | string | ISO timestamp of when the result was scraped |
Example output
{"position": 1,"title": "Beautiful sunset over the ocean","sourceUrl": "https://www.example.com/sunset-gallery","imageUrl": "https://www.example.com/images/sunset-hd.jpg","thumbnailUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:example","source": "example.com","width": 1920,"height": 1080,"searchQuery": "sunset photography","searchUrl": "https://www.google.com/search?q=sunset+photography&tbm=isch&gl=us&hl=en","scrapedAt": "2026-02-28T08:30:00.000Z"}


