1. 1688-API
Daji Open Platform API
  • Introduction
    • Integration Guide
      • Platform Overview
      • Become a developer
      • Access Key and Access Secret
      • API Signature Rules (Sign)
      • 1688 API Description
      • Taobao API Description
      • Frequently Asked Question
  • API Specification
    • 1688 API
      • 1688 Signature & Enumeration
      • 1688-API
        • 1688 Signature & Enum
        • Upload image to get imageId
        • Image Search
        • Keyword Search
        • Product Detail Search
        • Shop Search
        • Product Shipping Query
        • Category Query
        • Product Detail Search - supports short links
        • Query Ranking List
        • Query Daily Product Sales Trend
        • Preview Order
        • Create Order
        • Cancel Order
        • Confirm Receipt
        • Query Order Detail
        • Query Order List
        • Batch Get Order Payment Links
        • Initiate Password-free Payment
        • Multilingual Search Navigation
        • 1688 Trade Message
        • 1688 Message - Signature Verification
      • 1688 API Debugging
        • 1688 Business Opportunity
          • Query Ranking List
          • Query Daily Product Sales Trend
        • 1688 Product Search
          • Upload image to get imageId
          • Image Search
          • Keyword Search
          • Shop Search
          • Product Shipping Query
          • Category Query
          • Product Detail Search - supports short links
          • Product Detail Search
        • 1688 Order Manage
          • Create Order
          • Preview Order
          • Cancel Order
          • Confirm Receipt
          • Query Order List
          • Query Order Detail
        • 1688 Order Pay
          • Initiate Password-free Payment
          • Get payment links for orders in batches
        • Other API
          • Multilingual Search Navigation
      • 1688 Message Service
        • 1688 Message Service
        • 1688 Messages – Signature Verification
    • Taobao / Tmall API
      • Taobao-Tmall-API
        • Taobao/Tmall Signature & Enum
        • Upload Image
        • Image Search V1.0
        • Image Search V2.0
        • Keyword Search
        • Shop Search
        • Product Detail Search
        • Ranking Type Search
        • Ranking Product Search
        • Product Shipping Query
        • Product Detail Search - supports short links
        • Batch Product Shipping Query
        • Product Detail Search V2
        • Product Shipping Query V2
        • Batch Product Shipping Query V2
        • Matching API
        • Preview Product
        • Create Order
        • Cancel Order
        • Query Order
        • Pay Order
        • Order Message
        • Order Message - Signature Verification
      • Taobao/Tmall API Debugging
        • Taobao / Tmall Order Manage
          • Product ID Mapping
          • Product Preview
          • Create Order
          • Cancel Order
          • Query Order
        • Taobao / Tmall Order Pay
          • Batch Order Pay
        • Taobao / Tmall Product Search
          • Image upload By Get
          • Image Search V1.0
          • Image Search V2.0
          • Keyword Product Search
          • Shop Search
          • Product Detail Search V2
          • Ranking Type Search
          • Ranking Product Search
          • Product Shipping Query V2
          • Product Detail Search - supports short links
          • Batch Product Shipping Query V2
    • Poizon API
      • Poizon Product Search
        • Keyword Search
        • Product Detail
      • Poizon Order Manage
        • Create order & Payment API
        • Query Order Info
      • Poizon Balance Query API
        • Balance Query API
中文
Login In/Register
  1. 1688-API

Product Detail Search

OpenAPI Specification#

openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /alibaba/product/queryProductDetail:
    get:
      summary: 商品详情搜索
      deprecated: false
      description: >-
        请提交offerId进行搜索,支持多语言返回,开通多语言,请联系客服,英语:"en", 俄语:"ru", 越语: "vi", 日语:"ja",
        韩语: "ko", 法语:"fr", 葡萄牙语:"pt", 西班牙语: "es",泰语:"th",
        印尼语:"id",阿拉伯语:"ar",法语:"fr"
      tags:
        - 接口说明/1688 API/1688 商品搜索
      parameters:
        - name: appKey
          in: query
          description: 大吉平台appKey
          required: true
          example: ''
          schema:
            type: string
        - name: appSecret
          in: query
          description: 秘钥,仅调试使用,正式用sign签名
          required: false
          example: ''
          schema:
            type: string
        - name: sign
          in: query
          description: sign签名,请求的参数字典排序+秘钥appSecret,调试时可忽略改字段
          required: false
          example: ''
          schema:
            type: string
        - name: offerId
          in: query
          description: 商品id
          required: true
          example: '670291644950'
          schema:
            type: string
        - name: country
          in: query
          description: 如en-英语,枚举见开发人员参考
          required: true
          example: en
          schema:
            type: string
        - name: outMemberId
          in: query
          description: 外部用户id
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: 返回码
                  message:
                    type: string
                    description: 消息
                  data:
                    type: object
                    properties:
                      offerId:
                        type: integer
                        description: 商品ID
                      categoryId:
                        type: integer
                        description: 类目ID
                      categoryName:
                        type: 'null'
                        description: 类目名称
                      subject:
                        type: string
                        description: 中文标题
                      subjectTrans:
                        type: string
                        description: 译文标题
                      description:
                        type: string
                        description: 详情描述
                      mainVideo:
                        type: string
                        description: 主视频
                      detailVideo:
                        type: 'null'
                        description: 详情视频
                      productImage:
                        type: object
                        properties:
                          images:
                            type: array
                            items:
                              type: string
                            description: 图片
                        required:
                          - images
                        x-apifox-orders:
                          - images
                        description: 图片模型
                      productAttribute:
                        type: array
                        items:
                          type: object
                          properties:
                            attributeId:
                              type: string
                              description: 属性ID
                            attributeName:
                              type: string
                              description: 属性名称
                            value:
                              type: string
                              description: 属性值
                            attributeNameTrans:
                              type: string
                              description: 属性名称翻译
                            valueTrans:
                              type: string
                              description: 属性值翻译
                          required:
                            - attributeId
                            - attributeName
                            - value
                            - attributeNameTrans
                            - valueTrans
                          x-apifox-orders:
                            - attributeId
                            - attributeName
                            - value
                            - attributeNameTrans
                            - valueTrans
                        description: 商品属性信息
                      productSkuInfos:
                        type: array
                        items:
                          type: object
                          properties:
                            amountOnSale:
                              typ
修改于 2026-08-18 10:12:01
上一页
Keyword Search
下一页
Shop Search
Built with