获取热卖商品列表/Get hot selling products list

TikTokapi

About

获取热卖商品列表/Get hot selling products list

Documentation

获取热卖商品列表/Get hot selling products list

[中文]

用途:

  • 获取TikTok Shop的热卖商品列表
  • 返回当前最受欢迎的商品

参数:

  • region: 地区代码 (US/GB/SG/MY/PH/TH/VN/ID)
  • count: 返回商品数量,默认100 (可选)

返回数据结构:

{
    "code": 0,
    "message": "success",
    "data": {
        "products": [                // 热卖商品列表(最多1000个)
            {
                "product_id": "xxx",
                "title": "商品标题",
                "image": "商品图片",
                "price": {},              // 价格信息
                "rating": {},             // 评分信息
                "sales": {},              // 销量信息
                "rank": 1                 // 热卖排名
            }
        ]
    }
}

[English]

Purpose:

  • Get TikTok Shop hot selling products list
  • Returns currently most popular products

Parameters:

  • region: Region code (US/GB/SG/MY/PH/TH/VN/ID)
  • count: Number of products to return, default 100 (optional)

Response Structure:

{
    "code": 0,
    "message": "success",
    "data": {
        "products": [                // Hot selling products (up to 1000)
            {
                "product_id": "xxx",
                "title": "Product title",
                "image": "Product image",
                "price": {},              // Price info
                "rating": {},             // Rating info
                "sales": {},              // Sales info
                "rank": 1                 // Hot selling rank
            }
        ]
    }
}

[示例/Example]

region = "US"

Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

Try 获取热卖商品列表/Get hot selling products list

Test this model in the Sandbase Playground with your own prompts.

Open in Playground

Related Models