1. Capability Specifications
Daji Open Platform API
  • Introduction
    • Integration Guide
      • Platform Overview
      • Become a developer
      • Access Key and Access Secret
      • API Signature Rules (Sign)
      • Frequently Asked Question
    • 1688 - Adapted Capabilities
      • Capability Specifications
        • Signature & Enumeration
        • 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
        • Message Service
        • Messages – Signature Verification
      • Integration Testing
        • 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
    • Taobao - Adapted Capabilities
      • Capability Specifications
        • 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
      • Integration Testing
        • Taobao Order Manage
          • Product ID Mapping
          • Product Preview
          • Create Order
          • Cancel Order
          • Query Order
        • Taobao Order Pay
          • Batch Order Pay
        • Taobao 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 V2.0 - Adapted Capabilities
      • Capability Specifications
      • Integration Testing
        • Poizon V2.0 Product Search
          • Keyword Search
          • Product Detail
        • Poizon V2.0 Order Manage
          • Create Order & Payment
          • Query Order Info
          • Cancel Order
        • Poizon V2.0 Logistics
          • Query Logistics Trace
        • Poizon V2.0 Balance Query
          • Balance Query
中文
Login In/Register
  1. Capability Specifications

Signature & Enumeration

⚠️ Important Disclaimer
This set of interfaces is only a technical forwarding & adaptation layer.
All underlying data, permission, flow‑limit and risk‑control rules are subject to 1688 / TaoWorld official open‑platform.
‑ We cannot restore officially‑deprecated fields or identifiers (e.g. legacy item_id after mi‑id migration).
‑ We cannot bypass account‑qualification requirements set by Alibaba official.
‑ No independent commodity‑database is provided by Daji.

I、language enum(country)

Multi-language is entered through country, English: "en", Russian: "ru", Vietnamese: "vi", Japanese: "ja", Korean: "ko", French: "fr", Portuguese: "pt" , Spanish: "es", please contact customer service to activate multiple languages.

II、Search filter enum(filter)

Parameter example:filter passes in "shipIn24Hours,shipIn48Hours", and multiple conditions are separated by commas.

Comprehensive experience points: 5 stars(totalEpScoreLv1),4.5 -5.0 stars(totalEpScoreLv2), 4-4.5 stars (totalEpScoreLv3), 0-4 stars(totalEpScoreLv4)

24 hours collection rate:<95%(getRate24HLv1), ≥95%(getRate24HLv2), ≥99%(getRate24HLv3)

48 hours collection rate:<95%(getRate48HLv1), ≥95%(getRate48HLv2),≥99%(getRate48HLv3)

certified factory(certifiedFactory) same day delivery(shipInToday)1688 carefully selected (1688Selection)Distribution carefully selected(jxhy) Shipped within 24 hours(shipIn24Hours) Shipped within 48 hours(shipIn48Hours)

7 days no reason refund(noReason7DReturn) Support dropshipping(isOnePsale)Support dropshipping and free shipping( isOnePsaleFreePost) New products within 7 days(new7 )New products within 30 days(new30)

Selected globally(isQqyx)Cross-border select pallets(isSelect)

III、Search sorting criteria(sort)

Parameter example:sort{"price":"asc"},asc-Ascending order desc-descending order,enum:wholesale price-price,Repurchase rate-rePurchaseRate,monthly sales-monthSold

IV、Fields supported by list rankType

complex-Comprehensive list,hot-Bestseller list,goodPrice-price list,anchorHot-Anchor Hot List,anchorNew- Emerging anchor list,anchorRecommend-Anchor hot list

VNHot - Vietnam bestseller list,VNTrend-Vietnam trend list

V、TagInfo enum

isOnePsale-Dropshipping,isOnePsaleFreePostage-Free shipping for one piece,isSupportMix-mixed batch,noReason7DReturn-7 days no reason to return,1688_yx-1688 carefully selected,new7-New arrivals within 7 days

new30-New arrivals within 30 days,isQqyx-Selected globally,select-Cross-border select pallets

VI、API interface signature rules(sign)

/**
 * sign签名字符串生成规则
 */
public static String getSignString(Map<String, Object> params, String secret) {
    // 删除sign签名字段
    params.remove("sign");
    // 由于map是无序的,这里主要是对key进行排序(字典序)
    Set<String> keySet = params.keySet();
    String[] keyArr = keySet.toArray(new String[keySet.size()]);

    // 字典排序
    Arrays.sort(keyArr);

    StringBuilder sbd = new StringBuilder();
    for (String k : keyArr) {
        if (Optional.ofNullable(params.get(k)).isPresent()) {
            sbd.append(k).append("=").append(params.get(k)).append("&");
        }
    }

    // secret最后拼接
    sbd.append("secret=").append(secret);
    return sbd.toString();
}
/**
 * 对生成的sign字符串做MD5加密
 * 字符串转大写
 */
public static String getMD5String(String str) {
    try {
        MessageDigest md = MessageDigest.getInstance("MD5");
        byte[] digest = md.digest(str.getBytes());
        StringBuilder sb = new StringBuilder();
        for (byte b : digest) {
            sb.append(String.format("%02x", b));
        }
        return sb.toString().toUpperCase();
    } catch (Exception e) {
        return null;
    }
}

2. Simplified signature rules for POST-JSON request interfaces
Because a JSON structure may contain multiple nested levels, the order of fields at each level must remain consistent when generating the signature, which can easily lead to signature verification failures. To address this, a simplified authentication rule is provided—add a requestTime field to the original JSON request body.

/**
* 请求的appkey
*/
@NotNull(message = "参数: appkey不能为空")
protected String appKey;

/**
* 请求的时间戳
*/
@NotNull(message = "参数: requestTime不能为空")
protected String requestTime;

/**
* 请求签名
*/
@NotNull(message = "参数: sign不能为空")
protected String sign;

修改于 2026-08-27 08:11:08
上一页
Frequently Asked Question
下一页
Upload image to get imageId
Built with