Discover/1688 API
live

1688 APIs.1688.com

Search 1688.com wholesale products, fetch SKU pricing tiers, and retrieve customer reviews via 3 structured endpoints covering China's largest B2B marketplace.

Endpoint health
verified 8h ago
get_product_detail
get_product_reviews
search_products
3/3 passing latest checkself-healing
Endpoints
3
Updated
12d ago

What is the 1688 API?

The s.1688.com API provides 3 endpoints covering product search, detailed SKU data, and customer reviews from China's largest B2B wholesale marketplace. The search_products endpoint returns paginated results with offer IDs, seller names, pricing, and geographic location, while get_product_detail exposes full SKU model data including pricing tiers, variant properties, and promotion info — giving developers structured access to supplier and product data without manual browsing.

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 · 3 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

Search and Discovery

The search_products endpoint accepts a query string (Chinese or English) and an optional page integer for pagination. Each result object includes offerId, title, price, loginId, sellerName, bookedCount, province, city, url, and a hasMore flag alongside the total count. The bookedCount field indicates order volume and is useful for gauging supplier activity. Geographic fields (province, city) help identify where the seller operates within China.

Product Detail and SKU Modeling

The get_product_detail endpoint takes an offer_id (the numeric offerId from search results) and returns the full skuModel object. This object contains SKU selector data covering pricing tiers, variant properties (such as size or color), associated images, trade model constraints, and active promotion info. Pricing tiers are a core part of 1688 wholesale listings, where unit cost typically decreases at higher quantity thresholds.

Customer Reviews

The get_product_reviews endpoint requires both an offer_id and a login_id — the seller's login identifier returned in search_products results. It returns a reviews array and a headers metadata object. Note that the reviews array may be empty if a product has no recorded reviews. Pagination is supported via the page parameter. The login_id dependency means you must either run a search or fetch product detail before calling reviews.

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
8h 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
  • Compare unit pricing tiers across multiple 1688 suppliers for the same product category using skuModel data from get_product_detail.
  • Build a supplier shortlist by filtering search_products results by province or city to find geographically clustered manufacturers.
  • Track bookedCount across keyword searches to identify high-demand wholesale products.
  • Aggregate customer reviews from get_product_reviews to score supplier reliability before placing bulk orders.
  • Map offerId to sellerName and loginId for structured supplier databases populated from search results.
  • Monitor SKU variant availability and promotional pricing changes by polling get_product_detail for specific offer IDs.
  • Seed a product catalog with wholesale pricing from 1688.com by combining search pagination with per-offer detail lookups.
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?+
Alibaba Group offers the 1688 Open Platform (open.1688.com) with official APIs, but access requires Chinese business registration and approval. The s.1688.com Parse API provides structured access to search, product detail, and review data without those onboarding requirements.
What does the `skuModel` object in `get_product_detail` actually contain?+
The skuModel object includes SKU selector data covering pricing tiers (wholesale quantity brackets), variant properties such as size or color, images tied to specific SKU combinations, the trade model (e.g. minimum order quantities), and any active promotion info. It is the primary source for per-variant pricing on a 1688 listing.
Why does `get_product_reviews` require a `login_id` in addition to an `offer_id`?+
On 1688.com, reviews are scoped to the seller as well as the product. The login_id is the seller's account identifier and is returned in the loginId field of search_products results. You need to run a search or hold a prior result to supply this parameter when calling the reviews endpoint.
Does the API return seller certification, business license, or factory audit data?+
Not currently. The API covers offer-level fields (pricing, SKUs, location, reviews) and does not expose 1688 supplier verification badges, factory audit scores, or business license details. You can fork this API on Parse and revise it to add an endpoint targeting supplier profile pages for that data.
Are there limitations on review data availability?+
Yes. The reviews array can be empty if a product has no posted reviews, which is common for newer or lower-volume listings on 1688.com. The endpoint does not distinguish between a product with zero reviews and one where reviews are restricted — both return an empty array. Pagination via page applies only when reviews exist.
Page content last updated . Spec covers 3 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.
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.
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.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.