# Identify products from YouTube videos on AliExpress

**Use case:** 

Reverse-searches AliExpress with a YouTube frame grab to find retail listings for the product shown, with prices. How do I find the product in this video?

## Input

```json
{
  "provider": "aliexpress",
  "imageUrls": [
    "https://picsum.photos/seed/youtube-id-sample/640/640.jpg"
  ],
  "maxProducts": 40,
  "maxConcurrency": 2,
  "maxRetries": 1,
  "minDelay": 2,
  "maxDelay": 5,
  "requestRatePerSecond": 0.5,
  "maxImageBytes": 10485760,
  "maxImagePixels": 25000000
}
```

## Output

```json
{
  "provider": {
    "label": "Provider",
    "format": "text"
  },
  "source_image": {
    "label": "Source Image",
    "format": "link"
  },
  "image_url": {
    "label": "Match Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "original_title": {
    "label": "Original Title",
    "format": "text"
  },
  "product_url": {
    "label": "Product Link",
    "format": "link"
  },
  "price_min": {
    "label": "Price Min",
    "format": "number"
  },
  "price_max": {
    "label": "Price Max",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "shop_name": {
    "label": "Shop",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "sold_count": {
    "label": "Sold",
    "format": "number"
  },
  "image_rank": {
    "label": "Rank",
    "format": "number"
  },
  "moq": {
    "label": "MOQ",
    "format": "number"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Scraper by Image - 1688 / Alibaba / AliExpress](https://apify.com/devcake/scraper-by-image) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devcake/scraper-by-image) to learn more, explore other use cases, and run it yourself.