# Bulk Reverse Image Search From a URL List

**Use case:** 

Run reverse image search over a list of image URLs and get matches as JSON: title, source, url and thumbnail per match. Pay per result, schedule it weekly.

## Input

```json
{
  "image_url": "https://i.imgur.com/HBrB8p0.png",
  "search_type": "visual_matches",
  "max_results": 50
}
```

## Output

```json
{
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "url": {
    "label": "Page URL",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "imageWidth": {
    "label": "Image width",
    "format": "integer"
  },
  "imageHeight": {
    "label": "Image height",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Lens API | Reverse Image and Visual Product Search](https://apify.com/johnvc/google-lens-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-lens-api) to learn more, explore other use cases, and run it yourself.