# Get Google Images results without an API key

**Use case:** 

Search Google Images with no API key or quota setup. One call returns image URLs with sizes, thumbnails, source sites, and page links as clean JSON.

## Input

```json
{
  "queries": [
    "hiking boots"
  ],
  "maxResultsPerQuery": 50,
  "gl": "us",
  "hl": "en"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "imageWidth": {
    "label": "Image Width",
    "format": "integer"
  },
  "imageHeight": {
    "label": "Image Height",
    "format": "integer"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "link": {
    "label": "Page Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Images API - $0.10 per 1,000 - Fast Image API](https://apify.com/johnvc/google-images-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-images-api) to learn more, explore other use cases, and run it yourself.