# Compare 1688 Supplier Offers

**Use case:** 

Compare selected 1688 product offers by CNY price, minimum order quantity, supplier, location, and product images in one structured dataset.

## Input

```json
{
  "offerUrls": [
    {
      "url": "https://detail.1688.com/offer/927875250705.html"
    }
  ],
  "offerIds": [
    "927875250705",
    "1063153988432",
    "991308412993"
  ],
  "maxProducts": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "offerId": {
    "label": "Offer ID",
    "format": "string"
  },
  "title": {
    "label": "Product",
    "format": "string"
  },
  "priceMin": {
    "label": "Min price",
    "format": "number"
  },
  "priceMax": {
    "label": "Max price",
    "format": "number"
  },
  "minimumOrderQuantity": {
    "label": "MOQ",
    "format": "number"
  },
  "unit": {
    "label": "Unit",
    "format": "string"
  },
  "companyName": {
    "label": "Supplier",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "url": {
    "label": "1688 URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [1688 Product Scraper - Prices, MOQ & Suppliers](https://apify.com/webdata_labs/1688-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/1688-scraper) to learn more, explore other use cases, and run it yourself.