# Trace an image to its original source with Yandex

**Use case:** 

Reverse search an image on Yandex to find its original source and every page using it, each with the source domain and a snippet, as JSON.

## Input

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

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