Discover/1688 API
live

1688 API1688.com

Access 1688.com product data via 3 endpoints: keyword search, image search, and detailed product info including SKUs, price ranges, and seller location.

Endpoint health
verified 1d ago
search_by_keyword
get_product_details
search_by_image
3/3 passing latest checkself-healing
Endpoints
3
Updated
11d ago

What is the 1688 API?

This API exposes 3 endpoints for retrieving wholesale product data from 1688.com, Alibaba's Chinese B2B marketplace. The get_product_details endpoint returns SKU-level variant data, price ranges, seller location, and product images for any listing identified by its offer ID. The search_by_keyword endpoint supports both Chinese and English search terms, making it practical for cross-language sourcing workflows.

This call costs3 credits / call— charged only on success
Try it
Page number for pagination.
Publicly accessible image URL to associate with the search. Recorded in response but results come from a cached index.
Number of results per page, between 1 and 60.
api.parse.bot/scraper/bce3cd9b-591a-4e87-a406-6e57ab0dd092/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/bce3cd9b-591a-4e87-a406-6e57ab0dd092/search_by_image?page=1&image_url=https%3A%2F%2Fcbu01.alicdn.com%2Fimg%2Fibank%2FO1CN018VG8Ok249RQOQWar3_%21%216000000007348-0-searchweb.jpg&page_size=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Returns products from 1688.com's pre-rendered image search index. Results come from a cached product index of sun protection/face mask products. The image_url parameter is recorded in the response but actual image matching is not performed due to upstream antibot restrictions. Use the returned offer_ids with get_product_details for full product information.

Input
ParamTypeDescription
pageintegerPage number for pagination.
image_urlrequiredstringPublicly accessible image URL to associate with the search. Recorded in response but results come from a cached index.
page_sizeintegerNumber of results per page, between 1 and 60.
Response
{
  "type": "object",
  "fields": {
    "note": "string explaining that results are from a cached index",
    "page": "integer, current page number",
    "products": "array of product objects with offer_id, title, price, image_url, shop_name, city",
    "page_size": "integer, results per page",
    "total_found": "integer, total products in the index",
    "query_image_url": "string, the image URL passed in the request"
  },
  "sample": {
    "data": {
      "note": "Results are from a pre-rendered product index. The image_url parameter is recorded but results come from a cached search index of sun protection/face mask products.",
      "page": 1,
      "products": [
        {
          "city": "金华市",
          "price": "2.85",
          "title": "高颜值无痕冰丝防晒口罩女轻薄透气护眼角面罩夏季高级凉感口罩",
          "offer_id": "791912182230",
          "image_url": "https://cbu01.alicdn.com/O1CN01Oy4rTD1CCemGtnRHm_!!2215471880045-0-cib.jpg",
          "shop_name": "东阳市远峰服饰厂"
        }
      ],
      "page_size": 60,
      "total_found": 734,
      "query_image_url": "https://cbu01.alicdn.com/img/ibank/O1CN018VG8Ok249RQOQWar3_!!6000000007348-0-searchweb.jpg"
    },
    "status": "success"
  }
}

About the 1688 API

Endpoints and What They Return

The search_by_keyword endpoint accepts a keywords parameter (Chinese or English), plus optional page and page_size (1–60) controls. Each result in the products array includes offer_id, title, price, image_url, shop_name, city, and province. The has_more boolean and total_found integer make it straightforward to implement pagination over large result sets.

The get_product_details endpoint takes an offer_id — obtainable from search results or directly from a 1688.com product URL — and returns the full listing record: title (in Chinese), min_price and max_price, an images array, moq (minimum order quantity), unit, seller city and province, and a skus array. Each SKU object carries a sku_id, spec_id, and an attributes object that maps dimension names (such as color or size) to their values, enabling programmatic variant handling.

Image Search Behavior

The search_by_image endpoint accepts a publicly accessible image_url and pagination parameters. Due to upstream antibot restrictions, the endpoint does not perform live image matching; results are drawn from a cached index of sun protection and face mask products. The query_image_url field echoes back the URL you submitted, and a note field in the response explicitly documents this limitation. For general product discovery, search_by_keyword is the more versatile option.

Data Coverage

All product titles are returned in Chinese. Price fields (min_price, max_price, individual SKU prices) are strings representing CNY values. Seller geography is broken down to city and province. The API does not require a 1688.com account to retrieve listing or search data.

Reliability & maintenanceVerified

The 1688 API is a managed, monitored endpoint for 1688.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 1688.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official 1688.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a wholesale price tracker that monitors min_price and max_price changes for specific 1688.com offer IDs over time.
  • Enumerate SKU variants programmatically using the skus[].attributes object to map color and size combinations before placing bulk orders.
  • Cross-reference supplier geography by filtering search_by_keyword results by city or province to find regional manufacturers.
  • Aggregate moq values across competing listings to identify suppliers with the lowest minimum order requirements for a given product category.
  • Translate and index Chinese product titles from get_product_details into an English-language wholesale catalog.
  • Feed offer_id values from search_by_keyword into get_product_details to enrich a product comparison table with full image galleries and variant data.
  • Seed a dropshipping or sourcing tool with paginated keyword search results using page_size up to 60 and the has_more flag for loop control.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does 1688.com have an official developer API?+
Yes. 1688.com offers an official open platform API at open.1688.com, primarily targeting registered Chinese business partners. Access requires an approved developer account and is subject to eligibility requirements that exclude many international developers.
What does the `skus` array in `get_product_details` actually contain?+
Each element includes a sku_id, a spec_id, and an attributes object whose keys are dimension names (for example, '颜色' for color or '尺寸' for size) and whose values are the specific option for that SKU. This lets you reconstruct a variant matrix without parsing free-text descriptions.
How does image search work and what are its current limitations?+
The search_by_image endpoint records the submitted image_url in the query_image_url response field, but live image-similarity matching is not performed. Results come from a fixed cached index of sun protection and face mask products. The response includes a note field that states this explicitly. If you need broader category coverage, search_by_keyword with relevant terms is more reliable.
Does the API return seller reviews, transaction volume, or store ratings?+
Not currently. The API covers product titles, price ranges, SKU variants, images, MOQ, unit, and seller city/province. It does not expose review counts, star ratings, or historical transaction data. You can fork this API on Parse and revise it to add an endpoint targeting seller reputation fields.
Are product titles and attributes returned in English?+
Titles are returned in Chinese as they appear on 1688.com. SKU attribute keys and values are also in Chinese. The search_by_keyword endpoint accepts English input, but the matched listings will still return Chinese-language titles and attribute names in the response. Translation must be handled in your own application layer.
Page content last updated . Spec covers 3 endpoints from 1688.com.
Related APIs in MarketplaceSee all →
global.1688.com API
Search for wholesale products on Alibaba's 1688 marketplace by keyword or category to find pricing, seller information, and product images all in one place. Browse thousands of items directly from suppliers to compare options and discover deals for your business needs.
s.1688.com API
Search for wholesale products on 1688.com and retrieve detailed information including pricing, specifications, and customer reviews. Access comprehensive product data to compare suppliers and make informed purchasing decisions on China's leading B2B marketplace.
detail.1688.com API
Retrieve comprehensive product data from 1688.com product pages, including titles, images, pricing, SKU variants, attributes, seller details, packing specifications, and drop-shipping information — no login required.
alibaba.com API
Search for ready-to-ship products on Alibaba.com with full pagination support to browse inventory, pricing, and product details across multiple pages. Quickly discover available items without waiting for manufacturing timelines.
in19067452907ubjs.trustpass.alibaba.com API
Browse Alibaba supplier store categories and product listings with pricing, images, and detailed specifications to find and compare items that meet your needs. Access comprehensive product information including customer reviews to make informed purchasing decisions.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
en.yiwugo.com API
Search for wholesale products and retrieve detailed information like pricing, specifications, and availability directly from the Yiwu English marketplace. Access comprehensive product data to find suppliers and compare items across categories in one of the world's largest wholesale markets.
item.taobao.com API
Retrieve detailed product information including pricing, images, and weight specifications directly from Taobao listings to compare products and make informed purchasing decisions. Access comprehensive product data from world.taobao.com to streamline your shopping research and product analysis.