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

Inventory Search

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

资料正文

§2 Method: [POST]

#

§3 Function Description

Retrieve inventory information for multiple products or SKUs. Note:

  • Searches can be based on either product IDs or SKU IDs, not both at the same time.
  • Passing Product IDs returns the inventory information of all SKUs under the specified products.
  • Passing SKU IDs returns the inventory information for the specified SKUs.

#

§4 Common Parameters

For common parameters, refer to How to call TikTok Shop APIs - Common Parameters

Properties Location Type Require Sample Properties description
shop_cipherquerystringYGCP_XF90igAAAABh00qsWgtvOiGFNqyubMt3Use this property to pass shop information in requesting the API. Failure in passing the correct value when requesting the API for cross-border shops will return incorrect response.
Get by API Get Authorization Shop
content-typeheaderstringYapplication/jsonAllowed type: application/json
#

§5 Request Query Parameters

Properties Type Require Sample Properties description
app_keystringY38abcdEvery single app will have a unique key. Please use the specific key assigned to your app.
signstringY5361235029d141222525e303d742f9e38aea052d10896d3197ab9d6233730b8cSignature generated by gen algorithm. When you send API requests to TTS, you must sign them so that TTS can identify the senders.
timestampintY1623812664Unix timestamp GMT (UTC+00:00). This timestamp is used across all API requests. Developers can use this convert to local time.
#

§6 Request Body Parameters

Properties Type Require Sample Properties description
product_ids[]stringN["1729592969712207008"]A list of product IDs used to search for inventory information.
Max IDs: 100
sku_ids[]stringN["1729388324987897824"]
A list of SKU IDs used to search for inventory information.
Max IDs: 600
Note: If both sku_ids and product_ids are passed, sku_ids will take precedence.
#

§7 Request Sample

Query

https://open-api.tiktokglobalshop.com/product/202309/inventory/search?app_key=123abc&sign=5361235029d141222525e303d742f9e38aea052d10896d3197ab9d6233730b8c&timestamp=1625484268&shop_cipher=ROW_RHkDDABBAAB8tKAVoAqsMTjsQZFLyNfY

Body

{"product_ids":["1729592969712207008"],"sku_ids":["1729388324987897824"]}
#

§8 Response Parameters

Properties Type Sample Properties description
codeint0The success or failure status code returned in API response.
messagestringSuccessThe success or failure messages returned in API response. Reasons of failure will be described in the message.
request_idstring202203070749000101890810281E8C70B7Request log
dataobjectSpecific return information
^inventory[]objectInventory information for the requested products or SKUs.
^^product_idstring1729592969712207008The ID of the requested product.
^^skus[]objectThe list of requested SKUs.
^^^idstring1729388324987897824The SKU ID generated by TikTok Shop.
^^^seller_skustringColor-Red-XM01An internal code/name for managing SKUs, not visible to buyers.
^^^total_available_quantityint100The total number of units available for ordering across all warehouses.
It is the sum of the warehouse_inventory.available_quantity values in all warehouses.
^^^total_committed_quantityint10The total number of units reserved by existing customer orders across all warehouses (and therefore not available for ordering).
It is the sum of the warehouse_inventory.committed_quantity values in all warehouses.
^^^warehouse_inventory[]objectSKU warehouse inventory information.
^^^^warehouse_idstring7054915283043174149The ID of the warehouse where the SKU is stored.
Retrieve details of the warehouse from the Get Warehouse List API.
^^^^available_quantityint100The total number of units available for ordering in this warehouse.
This is equivalent to the inventory.quantity value returned in the Get Product API.
^^^^committed_quantityint10The total number of units reserved by existing customer orders in this warehouse (and therefore not available for ordering).
^^^total_available_inventory_distributionobjectThe distribution of the total available inventory for the SKU across different channels.
^^^^campaign_inventory[]objectInventory that is allocated to a specific campaign.
^^^^^quantityint30The number of units allocated.
^^^^^campaign_namestringBig SaleThe name of the associated campaign.
^^^^creator_inventory[]objectInventory that is allocated to TikTok creators.
^^^^^quantityint20The number of units allocated.
^^^^^creator_namestringpy001The name of the associated TikTok creator.
^^^^in_shop_inventoryobjectThe remaining inventory available for the shop after deducting those allocated for campaigns and creators.
^^^^^quantityint50The number of units allocated.
#

§9 Response Sample

{"code":0,"data":{"inventory":[{"product_id":"1729592969712207008","skus":[{"id":"1729388324987897824","seller_sku":"Color-Red-XM01","total_available_quantity":100,"total_committed_quantity":10,"warehouse_inventory":[{"warehouse_id":"7054915283043174149","available_quantity":100,"committed_quantity":10}],"total_available_inventory_distribution":{"campaign_inventory":[{"quantity":30,"campaign_name":"Big Sale"}],"creator_inventory":[{"quantity":20,"creator_name":"py001"}],"in_shop_inventory":{"quantity":50}}}]}]},"message":"Success","request_id":"202203070749000101890810281E8C70B7"}
#

§10 Error Code

For common error codes, refer to How to call TikTok Shop APIs - Common Error Code

Code Message
36009003Internal error. Please try again. If the issue persists after multiple attempts, please contact platform support.
12019008Product id is invalid
12019015The number of SKU exceed the limit
12019022SKU must contain a valid warehouse.
12019112seller id is invalid
12019114Seller has no permission
12019120The number of provided product IDs exceeds the limit.
#