# 1688 MOQ & Price Range Scan — Filter by CNY Budget

**Use case:** 

Scan a 1688.com category inside a price band. priceMin / priceMax filter on the min (bulk/MOQ) listing price and are re-checked at delivery, so out-of-range cards are dropped and never charged. Every row keeps its full MOQ quantity-break ladder. 30 enriched products: 30 x $0.005 + 30 x $0.003 + $0.01 run fee. Failed runs cost $0.00.

## Input

```json
{
  "keyword": "phone case",
  "maxItems": 30,
  "includeDetails": true,
  "targetMarket": "US",
  "sort": "price",
  "priceMin": 2,
  "priceMax": 20,
  "historyDays": 30,
  "includeTrendReport": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "CN"
  }
}
```

## Output

```json
{
  "offerId": {
    "label": "Offer ID",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "titleEn": {
    "label": "Title (English)",
    "format": "string"
  },
  "detailUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "price": {
    "label": "Price range",
    "format": "object"
  },
  "moq": {
    "label": "MOQ",
    "format": "integer"
  },
  "quantityPrices": {
    "label": "Quantity-break price ladder",
    "format": "array"
  },
  "dropshipReadyScore": {
    "label": "Dropship-Ready Score",
    "format": "integer"
  },
  "dropshipGrade": {
    "label": "Dropship grade",
    "format": "string"
  },
  "dropshipStatus": {
    "label": "Dropship status",
    "format": "string"
  },
  "salesTotal": {
    "label": "Total sales",
    "format": "integer"
  },
  "transactionCountText": {
    "label": "Transaction count (text)",
    "format": "string"
  },
  "repurchaseRate": {
    "label": "Repurchase rate",
    "format": "number"
  },
  "estLandedCostUsd": {
    "label": "Estimated landed cost (USD)",
    "format": "object"
  },
  "supplierName": {
    "label": "Supplier name",
    "format": "string"
  },
  "supplierCity": {
    "label": "Supplier city",
    "format": "string"
  },
  "isSuperFactory": {
    "label": "Source factory",
    "format": "boolean"
  },
  "weightKg": {
    "label": "Weight (kg)",
    "format": "number"
  },
  "dataQuality": {
    "label": "Data quality tier",
    "format": "string"
  },
  "sourceKeyword": {
    "label": "Source keyword",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [1688 Scraper — Product & Supplier Search, MOQ & Landed Cost](https://apify.com/crawleast/1688-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawleast/1688-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/crawleast/1688-product-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
