# Scrape bestselling products on AliExpress

**Use case:** 

Extract top-selling AliExpress products sorted by orders. Structured product data with prices. No subscription, pay per result.

## Input

```json
{
  "searchQueries": [
    "led lights"
  ],
  "maxResults": 5,
  "sortBy": "orders",
  "includeReviews": false,
  "maxReviewsPerProduct": 20,
  "reviewStarFilter": "all",
  "reviewImagesOnly": false,
  "reviewSort": "relevant",
  "reviewOutputMode": "nested",
  "translateReviews": false,
  "translateTo": "en_US",
  "convertCurrencies": true,
  "minPrice": 0,
  "maxPrice": 0,
  "proxyCountry": "US"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "salePriceFormatted": {
    "label": "Price",
    "format": "text"
  },
  "salePriceUSD": {
    "label": "Price USD",
    "format": "number"
  },
  "salePriceEUR": {
    "label": "Price EUR",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "ordersCount": {
    "label": "Sold",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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