Product Details

Retrieve complete product information for a Taobao or 1688 listing, including SKUs, images, attributes, and description.

POSThttps://open.hiobuy.com/api/client/third-purchase/info

If your deployment uses a different base URL, replace `https://open.hiobuy.com` accordingly.

Request headers

NameRequiredTypeDescription
X-UuidYesstringMerchant UUID assigned to your account
LanguageNostringLocale for product titles and attributes. Default: `zh_CN`. See supported locales.

Supported locales

MarketplaceCodeLocale
Taobaozh_CNChinese
Taobaoen_USEnglish
Taobaovi_VNVietnamese
1688zh_CNChinese
1688en_USEnglish
1688ko_KRKorean
1688jaJapanese
1688ru_RURussian
1688vi_VNVietnamese
1688es_ESSpanish
1688arArabic

Request body

NameRequiredTypeDescription
keywordYesstringProduct URL or marketplace product ID
platformYesstringMarketplace code: `taobao` (Taobao), `1688` (1688.com)
use_platformNostringWhether to use 1688 platform-native response fields. `0` = off, `1` = on. 1688 only. See 1688 API reference.

Example request

{
  "keyword": "https://detail.1688.com/offer/930485860295.html",
  "platform": "1688"
}

You may also pass the numeric product ID as keyword (e.g. 930485860295).

Sample response

{
  "ret": 1,
  "msg": "success",
  "data": {
    "num_iid": 930485860295,
    "title": "Sexy Slit Evening Dress…",
    "title_cn": "开叉性感晚礼服包臀新款透视礼服长裙…",
    "orginal_price": "105.00",
    "price": "105.00",
    "max_price": "105.00",
    "skus": {
      "sku": [
        {
          "price": "105.00",
          "properties": "Color:White;Size:S",
          "quantity": 142,
          "sku_id": 5815062253431,
          "spec_id": "94d1d179497744028aa76873afdeba62"
        }
      ]
    },
    "shop_id": "BBBSelJAnz_oE-hYRZc-u-f2w"
  }
}
The `desc` field contains HTML. Large `sku` arrays may be truncated in examples.

Response fields

Top level

NameTypeDescription
retnumberStatus code. `1` indicates success
msgstringStatus message
dataobjectProduct detail object

data (product)

NameTypeDescription
num_iidintegerMarketplace product ID
titlestringLocalized title
title_cnstringChinese title
orginal_pricestringOriginal price (API field name)
pricestringCurrent price
max_pricestringMaximum price
price_pange_listobject1688 wholesale pricing tiers (API field name)
min_order_quantitystring1688 minimum order quantity
batch_numberstring1688 batch quantity
nickstringSeller identifier (may be anonymized on 1688)
detail_urlstringProduct detail page URL
pic_urlstringMain image URL
descstringProduct description (HTML)
item_imgsarrayGallery image URLs
mainVideostringMain product video URL
detailVideostringDescription video URL
propsarrayFlat attribute list (`name`, `value`)
props_imgobjectVariant image map (`attribute:value` → URL)
props_listarrayLocalized variant tree (see below)
props_list_cnarrayChinese variant tree
skusobjectSKU list container
tagsarrayProduct tags (`key`, `name`, `value`)
salesstringTotal units sold
platformstringMarketplace code
shop_idstring1688 shop anonymization code — resolve via shop-nick API

data.props_list[] (variant tree)

NameTypeDescription
idstringMain attribute ID (e.g. `Color`, `Size`)
namestringMain attribute name
childrenarraySub-options
children[].idstringSub-attribute ID
children[].namestringSub-attribute name

data.skus.sku[] (SKU)

NameTypeDescription
orginal_pricestringOriginal SKU price
pricestringSKU price
propertiesstringVariant keys (`MainId:SubId;…`)
properties_namestringVariant keys and labels
properties_cnstringChinese variant keys
properties_name_cnstringChinese variant keys and labels
quantityintegerAvailable stock
salesintegerSKU units sold
sku_idintegerSKU ID
spec_idstring1688 specification ID
total_pricestringLine total (if applicable)

Related endpoints