Discover/1688 API
live

1688 APIdetail.1688.com

Access 1688.com product data via API: titles, pricing tiers, SKU variants, seller info, color codes, attributes, and drop-shipping details across 9 endpoints.

Endpoint health
verified 2h ago
get_product_color_codes
get_product_attributes
get_product_detail_images
get_product_pricing
get_product_packing_info
9/9 passing latest checkself-healing
Endpoints
9
Updated
21d ago

What is the 1688 API?

The 1688.com detail API covers 9 endpoints for extracting structured product data from 1688.com listings, including pricing, SKU variants, seller details, and distribution channel info. get_product_details returns the title, image arrays, price range, sales count, and seller object in a single call. Other endpoints isolate specific data slices — attributes, color codes, packing info, and drop-shipping terms — so you can fetch only what each workflow needs.

Try it
Numeric product offer ID (e.g. '573787401272') or full 1688.com product URL containing the offer ID.
api.parse.bot/scraper/bb0ade25-1595-4730-86be-b24affd889da/<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/bb0ade25-1595-4730-86be-b24affd889da/get_product_details?offer_id=573787401272' \
  -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 detail-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 — fetch product details, pricing, variants, and seller info."""
from parse_apis.ali1688_com_product_api import Ali1688, ProductNotFound

client = Ali1688()

# Fetch a product by offer ID — typed field access on the result.
try:
    product = client.products.get(offer_id="573787401272")
    print(product.title, product.sale_num, product.unit)
except ProductNotFound as exc:
    print(f"Product not found: {exc}")

# Drill into pricing tiers and minimum order quantity.
pricing = product.pricing()
print(pricing.min_price, pricing.max_price, pricing.begin_amount)
for tier in pricing.price_model.currentPrices:
    print(tier.beginAmount, tier.price)

# List color variants with images (bounded).
for color in product.color_codes(limit=5):
    print(color.name, color.image)

# Get seller information from the same product instance.
seller = product.seller()
print(seller.companyName, seller.loginId, seller.winportUrl)

# Check drop-shipping distribution channels.
ds = product.drop_shipping()
for ch in ds.distributeChannels:
    print(ch.name, ch.typeCode)

print("exercised: products.get / pricing / color_codes / seller / drop_shipping")
All endpoints · 9 totalmissing one? ·

Fetches comprehensive product details for a 1688.com listing including title, images, seller summary, price range, sales count, and product attributes. Single-page response per offer ID. Rate-limited: one request per IP before antibot triggers.

Input
ParamTypeDescription
offer_idrequiredstringNumeric product offer ID (e.g. '573787401272') or full 1688.com product URL containing the offer ID.
Response
{
  "type": "object",
  "fields": {
    "unit": "string, sales unit",
    "title": "string, product title",
    "images": "array of image objects with fullPathImageURI and size variants",
    "seller": "object with company_name, login_id, member_id",
    "offer_id": "string, the offer ID",
    "sale_num": "integer, total sales count",
    "attributes": "array of product attribute objects with name and value",
    "main_images": "array of main image objects with fullPathImageURI",
    "price_range": "object with min and max price strings"
  },
  "sample": {
    "data": {
      "unit": "对",
      "title": "原宿风简约几何圆形磨砂梦幻星空时光宝石满天星不锈钢耳钉 12MM",
      "images": [
        {
          "imageURI": "img/ibank/9108903206_2130544268.jpg",
          "summImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.summ.jpg",
          "searchImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.search.jpg",
          "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.jpg",
          "size220x220ImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.220x220.jpg",
          "size310x310ImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.310x310.jpg"
        }
      ],
      "seller": {
        "login_id": "qingwensp",
        "member_id": "qingwensp",
        "company_name": "义乌市怡雯饰品有限公司"
      },
      "offer_id": "573787401272",
      "sale_num": 5014,
      "attributes": [
        {
          "fid": 287,
          "name": "材质",
          "value": "不锈钢"
        }
      ],
      "main_images": [
        {
          "imageURI": "img/ibank/9108903206_2130544268.jpg",
          "fullPathImageURI": "https://cbu01.alicdn.com/img/ibank/9108903206_2130544268.jpg"
        }
      ],
      "price_range": {
        "max": "1.90",
        "min": "1.00"
      }
    },
    "status": "success"
  }
}

About the 1688 API

Product Data

get_product_details is the primary endpoint: given an offer_id (numeric string or full product URL), it returns the product title, sale_num, price_range with min and max strings, a seller object containing company_name, login_id, and member_id, plus images and main_images arrays with fullPathImageURI and size variants. get_product_attributes returns a flat list of attribute objects — each with fid, name, and value — covering fields like material, brand, style, and origin.

Pricing and Variants

get_product_pricing exposes tier pricing through a price_model object with currentPrices tiers and priceDisplayType, along with begin_amount for the minimum order quantity and per-SKU prices via sku_map. get_product_variants surfaces the full SKU graph: props lists property groups (color, size, etc.) with their value options, and sku_map maps each combination to its price and stock. get_product_color_codes returns only the color dimension of that graph, giving each variant's name, numeric id, and an optional image URL.

Seller and Distribution

get_seller_info returns userId, loginId, memberId, companyName, winportUrl for the seller's shop, and a sellerSign badge object. get_drop_shipping_info indicates whether a listing supports consignment via consignOffer (boolean), hasConsignPrice, and a distributeChannels array that lists supported platform names and typeCode values. get_product_detail_images pulls the marketing images embedded in the product description section, and get_product_packing_info returns per-SKU weight and packaging data when the seller has provided it.

Input Flexibility

Every endpoint accepts the same offer_id parameter, which can be either the bare numeric offer ID (e.g. 573787401272) or a full 1688.com product URL containing that ID. This means you can pass URLs directly from a crawl or link list without a pre-processing step to extract the numeric ID.

Reliability & maintenanceVerified

The 1688 API is a managed, monitored endpoint for detail.1688.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when detail.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 detail.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
2h ago
Latest check
9/9 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
  • Sync 1688.com supplier catalog data — titles, images, and price ranges — into a procurement database.
  • Build a cross-border sourcing tool that surfaces begin_amount and tier pricing from get_product_pricing to estimate landed costs.
  • Populate a dropshipping feed by filtering listings where consignOffer is true and distributeChannels includes a target platform.
  • Compare color and size variant availability across multiple supplier listings using get_product_variants sku_map.
  • Enrich product listings with structured specification data from get_product_attributes such as material, origin, and brand.
  • Pull seller badge and shop URL from get_seller_info to qualify suppliers by identity and shop presence before outreach.
  • Extract description-section marketing images via get_product_detail_images to audit supplier content quality.
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 offers an official open platform API under Alibaba's ecosystem, documented at open.1688.com. Access requires a registered developer account and approval. The Parse API provides structured product data without that approval process.
What does get_product_pricing return beyond a simple price?+
get_product_pricing returns min_price and max_price strings, a price_model object with currentPrices tier breakpoints and a priceDisplayType field, begin_amount for the minimum order quantity, and a sku_map that maps individual SKU combinations to their specific prices and stock levels.
Does the API return buyer reviews or product ratings?+
Not currently. The API covers product details, pricing, variants, attributes, seller info, color codes, packing data, detail images, and drop-shipping terms. Buyer reviews and ratings are not exposed by any current endpoint. You can fork this API on Parse and revise it to add a reviews endpoint.
What happens when a seller hasn't filled in packing info?+
get_product_packing_info returns an empty array when the seller has not provided per-SKU packing or weight data. The endpoint does not raise an error, so your integration should handle an empty array as a valid response indicating no packing data is available for that listing.
Does the API cover 1688.com store-level or shop-wide data, such as all products from a given seller?+
Not currently. All 9 endpoints are scoped to a single product identified by offer_id. There is no endpoint for listing all products from a seller's shop or searching across the catalog. You can fork this API on Parse and revise it to add a seller-catalog or search endpoint.
Page content last updated . Spec covers 9 endpoints from detail.1688.com.
Related APIs in MarketplaceSee all →
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.
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.
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.
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.
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.
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.
pconline.com.cn API
Search and browse products from PConline with access to detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Get comprehensive product data including specs and current prices across multiple categories all in one place.
jd.com API
Search for products on JD.com, explore related keywords, retrieve product recommendations, and access the latest corporate news from China's major e-commerce platform. Returns real-time product details including prices, ratings, and stock availability.