获取商家商品列表V1/Get seller products list V1

TikTokapi

About

获取商家商品列表V1/Get seller products list V1

Documentation

获取商家商品列表V1/Get seller products list V1

[中文]

用途:

  • 获取指定商家的商品列表
  • 支持分页加载更多商品

参数:

  • seller_id: 卖家ID (必填)
  • search_params: 搜索参数,用于分页加载(可选)
  • region: 地区代码 (US/GB/SG/MY/PH/TH/VN/ID)

重要提示:

  • 由于接口风控原因,请务必将请求timeout设置为30秒
  • 如遇到400错误代码,请重试请求3次

返回数据结构:

{
    "code": 0,
    "message": "success",
    "data": {
        "products": [                // 商品列表(每页30个)
            {
                "product_id": "xxx",
                "title": "商品标题",
                "image": "商品图片URL",
                "product_price_info": {},  // 价格信息
                "rate_info": {},           // 评分信息
                "sold_info": {},           // 销量信息
                "seller_info": {},         // 卖家信息
                "seo_url": "商品SEO链接"
            }
        ],
        "has_more": true,             // 是否有更多商品
        "load_more_params": {}        // 加载更多参数(用于下一页)
    }
}

[English]

Purpose:

  • Get product list from specified seller
  • Support pagination to load more products

Parameters:

  • seller_id: Seller ID (required)
  • search_params: Search parameters for pagination (optional)
  • region: Region code (US/GB/SG/MY/PH/TH/VN/ID)

Important Notice:

  • Due to API rate limiting, please set request timeout to 30 seconds
  • If you encounter error code 400, please retry the request 3 times

Response Structure:

{
    "code": 0,
    "message": "success",
    "data": {
        "products": [                // Product list (30 per page)
            {
                "product_id": "xxx",
                "title": "Product title",
                "image": "Product image URL",
                "product_price_info": {},  // Price info
                "rate_info": {},           // Rating info
                "sold_info": {},           // Sales info
                "seller_info": {},         // Seller info
                "seo_url": "Product SEO URL"
            }
        ],
        "has_more": true,             // Has more products
        "load_more_params": {}        // Load more params (for next page)
    }
}

[示例/Example]

seller_id = "7495150558072178725" search_params = "" region = "US"

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

Try 获取商家商品列表V1/Get seller products list V1

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

Open in Playground

Related Models