Technical Deep Dive: 1688.com Product Detail API - Full Guide & Standard JSON Reference

知名用户1800790547359分钟前未分类3

Introduction

1688.com, Alibaba’s flagship B2B wholesale marketplace, serves as the core supply chain hub for millions of global retailers, dropshippers, and enterprise procurement teams. Unlike consumer-facing e-commerce platforms, its open API ecosystem is purpose-built for bulk product sourcing, tiered price negotiation, supplier management, and automated B2B order fulfillment. The official product detail interface (part of the 1688 Open Platform suite) is the foundational technical gateway that enables third-party ERP systems, sourcing tools, and cross-border reselling platforms to access structured, real-time wholesale product data. This guide breaks down the full technical architecture, mandatory request parameters, and provides a production-grade standard JSON response reference to help developers build stable, compliant 1688 data integration pipelines.

1. Core Interface Basic Information

The 1688 Product Detail API is a production-grade RESTful service hosted on Alibaba’s B2B open platform infrastructure, optimized for high-frequency industrial and wholesale business scenarios.

Item

Specification

Official API Name

alibaba.product.get (Get Full Wholesale Product Details)

Communication Protocol

HTTPS POST (Recommended) / GET

Default Data Format

JSON (XML is supported for legacy enterprise ERP systems)

Official Gateway Endpoint

https://gw.open.1688.com/openapi

Authentication Mechanism

AppKey + AppSecret + OAuth 2.0 AccessToken + HMAC-SHA1 Signature

Typical Use Cases

Wholesale product sourcing, tiered price monitoring, supplier qualification verification, dropshipping inventory synchronization, cross-border e-commerce product listing automation

2. Full Request Parameter Breakdown

Calling this API strictly follows 1688 Open Platform’s proprietary signature specification. All non-empty parameters must be sorted lexicographically and encrypted with the AppSecret to generate a valid, tamper-proof signature value.

2.1 Mandatory Public Gateway Parameters

These parameters are required for every 1688 API call, used for platform authentication, permission validation and request tracing:

Parameter Name

Type

Required

Description

app_key

String

Yes

Unique application identifier, obtained after enterprise developer verification on 1688 Open Platform

method

String

Yes

Fixed as


alibaba.product.get


to specify the target product detail interface

access_token

String

Yes

OAuth 2.0 authorized token, which carries the requester’s permission scope (public data / enterprise exclusive price)

timestamp

String

Yes

East 8 timezone timestamp formatted as


yyyy-MM-dd HH:mm:ss, used to prevent replay attacks

v

String

Yes

API protocol version, the current stable production version is


2.0

sign_method

String

Yes

Signature algorithm,


hmac-sha1


is the platform standard for all B2B interfaces

sign

String

Yes

Final encrypted signature value generated by AppSecret and sorted parameters

2.2 Business Core Parameters

These parameters control the granularity and scope of the wholesale product data returned:

Parameter Name

Type

Required

Description

productId

Long

Yes

1688 unique product ID (Offer ID), extracted directly from the product detail page URL

fields

String

Yes

Custom return field list, for example


productId,title,price,sku,supplier. Explicitly specifying required fields can reduce response latency by over 40%

needCargoInfo

Boolean

No

Default


false. Set to


true


to return real-time warehouse stock distribution and logistics delivery information

includeExclusivePrice

Boolean

No

Default


false. Only authorized enterprise buyers can set this to


true


to view negotiated exclusive contract prices

3. Standard Production JSON Response Reference

Below is a standard full JSON response that strictly follows 1688’s official B2B interface return specification. This structure includes all unique high-value wholesale business fields, and can be directly used for debugging and enterprise ERP system docking:

Use the website: o0b.cn/anzexi

{
  "alibaba_product_get_response": {
    "code": 0,
    "msg": "success",
    "request_id": "1688_req_20260918102233456",
    "data": {
      "product_id": 678901234567,
      "subject": "Factory Direct 1000W Portable Outdoor Power Station 220V Solar Generator for Camping",
      "supplier_info": {
        "member_id": "123456789",
        "company_name": "Shenzhen New Energy Tech Co., Ltd.",
        "supplier_level": "A+",
        "gold_supplier_years": 8,
        "transaction_rate": "98.5%",
        "main_industry": "Portable Power Station"
      },
      "price_info": {
        "unit": "piece",
        "currency": "CNY",
        "price_tiers": [
          {"min_quantity": 1, "max_quantity": 9, "price": "689.00"},
          {"min_quantity": 10, "max_quantity": 99, "price": "620.00"},
          {"min_quantity": 100, "max_quantity": null, "price": "550.00"}
        ],
        "exclusive_contract_price": "520.00",
        "moq": 1
      },
      "stock_info": {
        "total_available_stock": 15600,
        "stock_status": "instock",
        "warehouse_distribution": [
          {"warehouse_code": "SZ001", "location": "Shenzhen", "stock": 9200, "lead_time_hours": 48},
          {"warehouse_code": "GZ002", "location": "Guangzhou", "stock": 6400, "lead_time_hours": 72}
        ]
      },
      "product_attrs": [
        {"attribute_name": "Battery Capacity", "attribute_value": "1024Wh"},
        {"attribute_name": "Rated Power", "attribute_value": "1000W"},
        {"attribute_name": "Interface Type", "attribute_value": "USB-A / Type-C / AC Outlet"},
        {"attribute_name": "Certification", "attribute_value": "CE, FCC, RoHS, PSE"}
      ],
      "sku_list": [
        {
          "sku_id": 987654321001,
          "specification": "Standard Version (No Solar Panel)",
          "sku_price": "689.00",
          "sku_stock": 8600
        },
        {
          "sku_id": 987654321002,
          "specification": "Pro Version (With 100W Solar Panel)",
          "sku_price": "899.00",
          "sku_stock": 7000
        }
      ],
      "media_resources": {
        "main_image": "https://cbu01.alicdn.com/img/ibank/2026/xxx/1.jpg",
        "image_gallery": [
          "https://cbu01.alicdn.com/img/ibank/2026/xxx/1.jpg",
          "https://cbu01.alicdn.com/img/ibank/2026/xxx/2.jpg",
          "https://cbu01.alicdn.com/img/ibank/2026/xxx/3.jpg"
        ],
        "detail_video": "https://cloud.video.1688.com/play/xxx.mp4"
      },
      "trade_info": {
        "payment_terms": "T/T, L/C, Alibaba Trade Assurance",
        "shipping_terms": "FOB Shenzhen",
        "supply_capability": "50000 pieces / Month",
        "customization_support": true
      }
    }
  }
}



相关文章

技术实战:亚马逊商品详情API接口接入指南与JSON返回参考

前言在跨境电商选品、多平台铺货、竞品价格监控的业务场景中,亚马逊商品详情API是开发者和跨境卖家最核心的结构化数据入口。它无需搭建复杂的海外代理爬虫体系,就能稳定获取全维度的亚马逊商品信息,大幅降低跨...

Python 实现京东商品详情 API 数据准确性校验(极简可直接用)

前言我给你最简洁、最实用、程序员直接复制运行的版本,专门校验京东 API 返回的商品数据是否准确、合法、可用。一、校验核心(只做最重要的)校验返回结构是否正常商品 ID(sku_id)是否有效商品标题...

当当商品详情数据采集,当当API接口(json数据返回)

以下是针对当当商品详情数据采集的 API 接口调用方案,专注于 JSON 数据返回的接口解析和 Python 实现,包含完整代码和字段说明:一、核心 API 接口确认经过验证,当当网目前稳定可用的商品...

淘宝商品详情 API 技术简析(简易版 + JSON 参考)

前言一、接口基础接口名称:taobao.item.get协议:HTTPS + REST 请求,支持 GET/POST鉴权:基于 AppKey + AppSecret + MD5 签名 校验,防篡改与非...

如何申请淘宝的详情API接口权限控制

要申请淘宝详情API接口(如taobao.item.get)的权限控制,需遵循以下流程并满足相应条件:一、申请条件主体资质企业认证:需提供营业执照、组织机构代码证、税务登记证等证件,确保企业合法合规经...

其他一些常见的淘宝API接口是什么

除了之前提到的商品管理、库存更新、价格调整等接口外,天猫开放平台还提供了一系列其他重要的API接口,以下是一些常见的例子:商品搜索与推荐接口:关键词搜索商品接口:如taobao.item.search...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。