# Reverse image search with Yandex, results as JSON

**Use case:** 

Give any image URL and get Yandex reverse image results, matching pages, similar images, and more, as structured JSON. No API key setup.

## Input

```json
{
  "image_url": "https://raw.githubusercontent.com/github/explore/main/topics/python/python.png",
  "include_matching_pages": true,
  "include_similar_images": true,
  "include_image_sizes": true,
  "include_image_tags": true,
  "include_shopping_results": false,
  "include_knowledge_graph": false,
  "yandex_domain": "yandex.com",
  "max_results": 20
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "link": {
    "label": "Link",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "size_category": {
    "label": "Size Category",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Yandex Reverse Image Search API](https://apify.com/johnvc/yandex-reverse-image-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/yandex-reverse-image-search) to learn more, explore other use cases, and run it yourself.