Discover/1688 API
live

1688 APIs.1688.com

Search 1688.com wholesale products, fetch SKU pricing tiers, variant details, and customer reviews via 4 endpoints. Ideal for supplier research and price comparison.

This API takes change requests — .
Endpoint health
verified 3h ago
get_product_detail
search_by_image
get_product_reviews
search_products
4/4 passing latest checkself-healing
Endpoints
4
Updated
3d ago

What is the 1688 API?

The 1688.com API exposes 4 endpoints covering product search, detailed SKU data, customer reviews, and reverse image search across China's primary wholesale B2B marketplace. The search_products endpoint returns up to 40 listings per page with seller login IDs, pricing, and geographic data. The get_product_detail endpoint returns full SKU variant trees, per-tier pricing, and stock information for any offer ID.

Try it
Page number for pagination
Search keyword (Chinese or English)
api.parse.bot/scraper/aa6e2b5e-7963-46f5-a6c2-e326775ceae4/<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/aa6e2b5e-7963-46f5-a6c2-e326775ceae4/search_products?page=1&query=ceramic+mug' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace s-1688-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: 1688.com Product API — search, drill into details and reviews."""
from parse_apis._1688_com_Product_API import Alibaba1688, NotFoundError

client = Alibaba1688()

# Search for products — limit= caps total items fetched across all pages.
for item in client.product_summaries.search(query="ceramic mug", limit=5):
    print(item.title, item.price, item.image_url, item.city)

# Drill into one result for full SKU detail.
first = client.product_summaries.search(query="LED light", limit=1).first()
if first:
    detail = first.details()
    if detail.sku_model and detail.sku_model.sku_selector_biz_model:
        biz = detail.sku_model.sku_selector_biz_model
        print(detail.offer_id, biz.sku_price_scale)
        if biz.sku_props:
            for prop in biz.sku_props:
                print(prop.prop, [v.name for v in prop.value])

# Fetch reviews for a product via the sub-resource.
if first:
    for review in first.reviews.list(login_id=first.login_id, limit=3):
        print(review.star_level, review.content)

# Direct product detail lookup by offer_id.
try:
    product = client.products.get(offer_id="1027530641922")
    print(product.offer_id)
except NotFoundError as exc:
    print(f"Product not found: {exc}")

print("exercised: product_summaries.search / details / reviews.list / products.get")
All endpoints · 4 totalmissing one? ·

Full-text search over 1688.com product listings by keyword. Returns a paginated list of product offers with seller info, pricing, and location. Each page returns up to 40 items. Paginates via integer page counter. Results include enough seller context (loginId) to drill into reviews.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch keyword (Chinese or English)
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "items": "array of product objects with offerId, title, price, imageUrl, loginId, sellerName, bookedCount, province, city, url",
    "total": "integer total number of results",
    "hasMore": "boolean indicating if more pages are available"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "url": "https://detail.1688.com/offer/1027530641922.html",
          "city": "梁山县",
          "price": "3.9",
          "title": "11oz热升华空白涂层杯 欧美AAA级Sublimation Mug热转印马克杯",
          "loginId": "梁山晟恒科贸",
          "offerId": 1027530641922,
          "province": "山东",
          "sellerName": "梁山晟恒科贸有限公司",
          "bookedCount": "6"
        }
      ],
      "total": 2000,
      "hasMore": true
    },
    "status": "success"
  }
}

About the 1688 API

Endpoints and Data Shape

The API covers four operations against 1688.com listings. search_products accepts a query string (Chinese or English) plus an optional page integer and returns an array of product objects — each with offerId, title, price, imageUrl, loginId, sellerName, bookedCount, province, city, and url — alongside a total count and hasMore flag for pagination. The loginId field is the key that links search results to reviews.

Product Detail and SKU Data

get_product_detail takes a single offer_id (the numeric string from offerId in search results) and returns the full skuModel object. This includes skuSelectorBizModel with skuPriceScale (quantity-based pricing tiers), skuProps (color, size, and other variant axes with per-option images), stock levels, minimum order quantities, and any active promotion metadata. This is the primary endpoint for supplier price comparison at scale.

Reviews and Image Search

get_product_reviews requires both offer_id and login_id together — neither alone is sufficient. It returns a paginated reviews array where each item may include a star rating, text content, and date. The array can be empty for products with no review activity. search_by_image accepts a publicly accessible image_url and returns visually matching wholesale listings with the same field set as keyword search: offerId, title, price, shopName, loginId, province, city, bookedCount, and url.

Reliability & maintenanceVerified

The 1688 API is a managed, monitored endpoint for s.1688.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when s.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 s.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
3h ago
Latest check
4/4 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
  • Aggregate wholesale supplier options for a product category using search_products with keyword queries and comparing price and bookedCount fields.
  • Build a supplier comparison tool that pulls skuPriceScale from get_product_detail to show quantity-break pricing across multiple sellers.
  • Cross-reference province and city fields from search results to filter suppliers by manufacturing region.
  • Feed product images from competitors or retail sites into search_by_image to find equivalent wholesale sources on 1688.com.
  • Monitor review sentiment for a supplier's listings using get_product_reviews and the login_id obtained from search results.
  • Enumerate SKU variant options via skuProps in the detail endpoint to verify a supplier carries specific colors or sizes before contacting them.
  • Automate sourcing pipelines that combine keyword search, SKU detail extraction, and review checks in a single workflow.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. 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?+
1688.com (operated by Alibaba) does offer an open platform API at open.1688.com, but it requires business verification, a signed partnership agreement with Alibaba, and approval of specific API privileges — access is not available to individuals or most foreign developers without going through an authorized ISV.
What does `get_product_detail` return beyond basic price and title?+
It returns the full skuModel structure, which includes quantity-tiered pricing via skuPriceScale, all variant dimensions (colors, sizes, and custom properties) with images in skuProps, stock levels, minimum order quantities, and any promotion or trade-model metadata. This is notably more granular than what search_products returns for the same listing.
Can I retrieve seller store profiles or shop-level metrics?+
Not currently. The API surfaces seller identifiers (loginId, sellerName, shopName) and product-level data, but does not have a dedicated endpoint for shop pages, seller ratings, or aggregate transaction history. You can fork this API on Parse and revise it to add a seller-profile endpoint.
Why does `get_product_reviews` require both `offer_id` and `login_id`?+
On 1688.com, reviews are associated with both the product listing and the specific seller account. Supplying only one identifier is not sufficient to locate the correct review set. Both values are available from a prior search_products call via the offerId and loginId fields on each item.
Does the API support filtering search results by price range, minimum order quantity, or certification?+
The search_products endpoint accepts a keyword query and pagination page parameter only — there are no server-side filter parameters for price range, MOQ, or supplier certifications. Filtering on those dimensions must be done client-side using the fields returned in the response. You can fork this API on Parse and revise it to expose additional filter parameters if the underlying source supports them.
Page content last updated . Spec covers 4 endpoints from s.1688.com.
Related APIs in MarketplaceSee all →
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.
dhgate.com API
Search DHgate's vast marketplace to find products across all categories, view detailed information including pricing tiers, shipping options, and seller ratings, and discover flash deals. Retrieve full product details and customer reviews in one place.
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.
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.
lightinthebox.com API
Browse and discover products across categories on LightInTheBox, search for items, view detailed product information and customer reviews, and check out current flash sale deals. Find exactly what you're looking for with comprehensive product catalogs and real-time pricing updates.
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.
uland.taobao.com API
Search for products and retrieve detailed information including pricing, product specifications, and origin details from Taobao's affiliate marketplace. Browse homepage product listings and get comprehensive product data to help you find and analyze items available on the platform.
megamarket.ru API
Search and browse products across MegaMarket.ru's catalog, view detailed product information with customer reviews, and explore catalog categories to discover items available on Sber's Russian marketplace. Get real-time search suggestions and product recommendations to help you find exactly what you're looking for.