# Scrape Google Images by Keyword

**Use case:** 

Extract ranked Google Images results for a public keyword, including image URLs when available, thumbnails, source pages, dimensions, and rank positions.

## Input

```json
{
  "queries": [
    "women running shoes"
  ],
  "maxItems": 20,
  "resultsPerQuery": 20,
  "language": "en",
  "country": "us",
  "safeSearch": "active",
  "uniqueImagesOnly": true,
  "minDelaySeconds": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "imageWidth": {
    "label": "Image width",
    "format": "number"
  },
  "imageHeight": {
    "label": "Image height",
    "format": "number"
  },
  "sourceDomain": {
    "label": "Source domain",
    "format": "text"
  },
  "page": {
    "label": "Page",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "safeSearch": {
    "label": "SafeSearch",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Images Scraper](https://apify.com/fetch_cat/google-images-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/google-images-scraper) to learn more, explore other use cases, and run it yourself.