# Find products from an image with Yandex

**Use case:** 

Reverse search a product image on Yandex to find visually similar products and shop listings where available, each with thumbnail, link, and source, as JSON.

## Input

```json
{
  "image_url": "https://images.unsplash.com/photo-1584917865442-de89df76afd3",
  "include_matching_pages": false,
  "include_similar_images": true,
  "include_image_sizes": false,
  "include_image_tags": false,
  "include_shopping_results": true,
  "include_knowledge_graph": false,
  "yandex_domain": "yandex.com",
  "max_results": 15
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "original": {
    "label": "Original Image",
    "format": "string"
  },
  "link": {
    "label": "Link",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "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.