Taobao & 1688 Product API Technical Overview and JSON Response Reference

知名用户180079054732个月前未分类109

Taobao & 1688 Product API Technical Overview and JSON Response Reference

1. Topic Overview

This article introduces the official Taobao and 1688 product detail API capabilities from an enterprise technical perspective. It covers API core functions, standard request rules, business application scenarios, and standard JSON data return structure. The API is widely used for commodity synchronization, store inventory management, price monitoring, cross-platform distribution, and e-commerce data analysis.

2. API Introduction

The Taobao / 1688 Product API is an official open interface provided by the Taobao Open Platform (TOP). It allows developers and enterprises to obtain standardized structured product data through formal authentication and signature verification.
Common official API methods:
  • taobao.item.get: Obtain basic product details

  • taobao.item.get_full: Obtain full product data (SKU, images, description, promotion)

  • taobao.items.onsale.get: Get all on-sale products from a store

  • 1688.item.get: Get 1688 wholesale product information

3. Core Technical Features

  • Protocol: HTTPS

  • Data format: JSON / XML (JSON is recommended for enterprise development)

  • Authentication: AppKey + AppSecret MD5 signature verification

  • Data feature: structured, standardized, stable version iteration

  • Access control: QPS limit, frequency control, official traffic protection

4. Enterprise Application Scenarios

  • Cross-store and cross-platform product distribution (dropshipping)

  • Enterprise ERP commodity data synchronization

  • Real-time price and inventory monitoring system

  • Competitor product data analysis

  • E-commerce big data statistics and automated report generation

5. Standard JSON Return Reference (Enterprise Version)

The following is the universal standard JSON response structure for Taobao and 1688 product detail API, including core fields required for enterprise development.
{
  "item_get_response": {
    "item": {
      "num_iid": "680123456789",
      "title": "2026 Summer New Casual Cotton Short Sleeve T-shirt",
      "price": "89.00",
      "promotion_price": "59.00",
      "num": 520,
      "sales": 12580,
      "cid": 50015261,
      "category_name": "Women's Clothing > T-shirt",
      "pic_url": "https://img.taobao.com/xxx.jpg",
      "location": "Guangdong, Guangzhou",
      "nick": "Official Flagship Store",
      "modified_time": "2026-05-20 15:30:10",
      "sku_list": {
        "sku": [
          {
            "sku_id": "123456789001",
            "properties_name": "White / L",
            "price": "59.00",
            "quantity": 120
          },
          {
            "sku_id": "123456789002",
            "properties_name": "Black / XL",
            "price": "59.00",
            "quantity": 95
          }
        ]
      }
    },
    "request_id": "2026052015301000123"
  }
}

6. Core Field Explanation

  • num_iid: Unique product ID, the primary key for data synchronization

  • title: Product official title

  • price / promotion_price: Original price and discount price

  • num: Current stock quantity

  • sales: Cumulative sales volume

  • pic_url: Main product image URL

  • sku_list: Multi-specification price and inventory data

  • modified_time: Last update time for incremental synchronization

  • request_id: Full-link tracking ID for error troubleshooting

7. Enterprise Stability Guarantee Strategy

  • Control QPS frequency to avoid platform flow restriction

  • Retry mechanism for network timeout and 5xx errors

  • Strict data validation for price, stock and fields

  • Redis cache optimization to reduce API pressure

  • Incremental update based on modified_time

  • Full log recording and abnormal alarm monitoring

8. Summary

Taobao and 1688 Product API provides stable, standardized, and official compliant e-commerce commodity data services. It is the core data source for enterprise-level e-commerce systems, including commodity synchronization, distribution business, price monitoring, and data analysis. With standardized request logic, data verification, caching and flow control strategies, developers can ensure long-term stable operation of production-level business systems.


相关文章

淘宝京东1688店铺所有商品API接口系列,json数据返回

以下是淘宝、京东、1688店铺所有商品API接口的JSON数据返回结构及关键字段说明,适用于电商平台数据同步、商品管理系统开发等场景:一、淘宝店铺所有商品API接口接口名称:taobao.shop.i...

淘宝拍立淘 API(taobao.item.search.img)

前言一句话说明:上传图片(URL/Base64),返回淘宝同款 / 相似商品列表,用于比价、内容带货、同款监控。一、如何确保数据稳定性(简单有效)严控调用频率免费版 QPS≤5,商用版按套餐限流;间隔...

京东商品详情 API 完整解析 + 标准 JSON 返回示例

本文以京东联盟开放接口 jd.union.open.goods.detail.query 为例,完整说明接口结构、字段含义、业务用途,并提供可直接用于开发调试的标准 JSON 返回示例。一、接口基本信...

如何保障电商商品详情数据采集的API接口系列的性能稳定?

保障电商商品详情数据采集 API 接口系列的性能稳定,需围绕「高并发承载、低延迟响应、故障隔离、容错兜底」四大核心目标,从「架构设计、技术优化、运维监控」三维度构建全链路保障体系。以下是可落地的系统性...

微店商品详情API接口调用失败的常见原因有哪些?

微店商品详情 API 接口调用失败的原因可归纳为 参数配置、身份认证、权限合规、网络环境、接口自身 五大类,结合微店 API “轻量但校验严格” 的特性,以下是具体常见原因及对应排...

用Java语言解析京东商品评论接口的JSON数据时,如何处理可能出现的异常情况?

Java 解析京东商品评论 API JSON 数据:异常处理完整方案在 Java 调用京东商品评论 API 并解析 JSON 数据时,异常可能出现在 HTTP 请求阶段(如网络波动、权限失效...

发表评论    

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