hasMore 为true时可继续请求下一页,否则已到最后一页。{
"code": 0,
"message": "success",
"data": {
"products": [ // 商品列表(最多20个)
{
"product_id": "xxx",
"title": "商品标题",
"image": "商品图片",
"price": {}, // 价格信息
"rating": {}, // 评分信息
"sales": {} // 销量信息
}
]
}
}hasMore in response is true, can request next page, otherwise reached last page.{
"code": 0,
"message": "success",
"data": {
"products": [ // Product list (up to 20)
{
"product_id": "xxx",
"title": "Product title",
"image": "Product image",
"price": {}, // Price info
"rating": {}, // Rating info
"sales": {} // Sales info
}
]
}
}Authorization: Bearer ********************curl --location 'https://api.tikomni.com/api/u1/v1/tiktok/shop/web/fetch_products_by_category_id?category_id=963976&offset=0®ion=US' \
--header 'Authorization: Bearer <token>'{}