# How to Find Best Selling Products on Alibaba

**Use case:** 

Step-by-step: how to find best selling products on Alibaba using order-count and review filters. Built for FBA. How to find hot selling products on Alibaba?

## Input

```json
{
  "queries": [
    "yoga mat",
    "kitchen gadgets",
    "phone stand"
  ],
  "max_pages": 3,
  "start_page": 1,
  "moq_min": 50,
  "trade_assurance": false,
  "verified_supplier": true,
  "alibaba_guaranteed": true
}
```

## Output

```json
{
  "search_query": {
    "label": "Search Query",
    "format": "text"
  },
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "price_min": {
    "label": "Min Price",
    "format": "number"
  },
  "price_max": {
    "label": "Max Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "moq": {
    "label": "Min Order Qty",
    "format": "number"
  },
  "product_url": {
    "label": "Product URL",
    "format": "link"
  },
  "main_image": {
    "label": "Image",
    "format": "image"
  },
  "company_name": {
    "label": "Company",
    "format": "text"
  },
  "years_as_gold_supplier": {
    "label": "Gold Years",
    "format": "number"
  },
  "supplier_service_score": {
    "label": "Service Score",
    "format": "number"
  },
  "is_alibaba_guaranteed": {
    "label": "Alibaba Guaranteed",
    "format": "boolean"
  },
  "is_trade_assurance": {
    "label": "Trade Assurance",
    "format": "boolean"
  },
  "is_verified_supplier": {
    "label": "Verified Supplier",
    "format": "boolean"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "review_score": {
    "label": "Rating",
    "format": "number"
  },
  "orders_count": {
    "label": "Orders",
    "format": "number"
  },
  "delivery_estimate": {
    "label": "Delivery Estimate",
    "format": "text"
  },
  "dispatch_time": {
    "label": "Dispatch Time",
    "format": "text"
  },
  "free_shipping": {
    "label": "Free Shipping",
    "format": "boolean"
  },
  "easy_return": {
    "label": "Easy Return",
    "format": "boolean"
  }
}
```

## About this Actor

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