快工助手跨境电商知识与商机助手

Product API now supports two prices

TikTok Shop 官方资料 · TikTok Shop Partner Center 开发者文档 · 适合开发者

stable本次发布有变化全部展示

来自 TikTok Shop 官方资料快照 ·

打开官方原文 ↗
  1. 当前资料结构化阅读页
  2. 固定快照已留存,可追溯
  3. 官方原文可核对
查看技术与溯源信息
平台 / profile
TikTok Shop / profile.tiktok.docs_api
语言
en-US
发布版本
cn-20260909-2
标签
zhuge/sourceplatform/tiktok_shopaudience/developercategory/api_doctopic/compliancetopic/developer

资料正文

§1 Product API now supports two prices

#

§2 Summary

Summary

Previously, developers could only sync a single price to TikTok Shop, limiting merchants who use multiple pricing structures (e.g., Shopify's "Compare at Price" and "Sale Price"). Starting at the end of February, TTS will support syncing two prices — List Price and Retail Price — via the API, enabling better discount management and pricing consistency. After the end of February, TikTok Shop will also introduce a new private API called External Verification API that will allow approved developers to verify the authenticity of the original listing price.

#

§3 Change Details

Change Details

The following endpoints will be updated to support two product prices:

  • Check Product Listing
  • Create Product
  • Edit Product
  • Partial Edit Product
  • Update Price
  • Get Product Details
  • Search Product
#

§4 Payload Changes

Payload Changes

#
§5 Public APIs

Public APIs

The request parameters has each object in the skus array modified to contain both price (the Retail Price) and list_price (the List Price) as shown below:

{
  "skus": [
    {
      "price": {
        "currency": "USD",
        "amount": "1.21"
      },
      "list_price": {
        "amount": "2.00",
        "currency": "USD"
      },
      "external_list_prices": [
        {
          "source": "shopify_compare_at_price",
          "amount": "2.00",
          "currency": "USD"
        }
      ],
      "seller_sku": "Color-Red-XM001"
    }
  ]
}

The response will also contain a similarly modified array of objects, with each object having both a price and list_price.

#
§6 Private API: External Price Verification

Private API: External Price Verification

Approved developers can use this API to send an external verification price (the highest sold price on a DTC website) to validate the List Price, enabling it to be displayed as a Strikethrough price on TTS.

#

§7 Required Actions

Required Actions

If you have sellers wishing to display discounted pricing, this new way will be a lot easier than managing promotions individually. We highly recommend that you adopt this feature.

#

§8 Markets and Versions

Markets and Versions

This change applies to all markets and all versions.

#