# Find high-resolution images by keyword

**Use case:** 

Find high-resolution images on Google by keyword. Each row returns the full-size image URL with its width and height, plus the title, source, and page link.

## Input

```json
{
  "queries": [
    "yosemite national park"
  ],
  "maxResultsPerQuery": 20,
  "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.