# 以图搜图API：谷歌智能镜头风格识图

**Use case:** 

提交图片URL即可获得相似图片匹配：标题、来源网站、页面链接与缩略图，输出结构化JSON，支持批量处理与国家语言定向。按结果计费，提供免费额度。

## Input

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

## 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.