{
"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链接",
"product_marketing_info": {} // 营销信息
}
],
"has_more": true, // 是否有更多
"load_more_params": { // 分页参数
"offset": 30,
"page_token": "xxx",
"api_source": 2
}
}
}{
"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",
"product_marketing_info": {} // Marketing info
}
],
"has_more": true, // Has more
"load_more_params": { // Pagination params
"offset": 30,
"page_token": "xxx",
"api_source": 2
}
}
}Authorization: Bearer ********************curl --location 'https://api.tikomni.com/api/u1/v1/tiktok/shop/web/fetch_search_products_list?search_word=labubu&offset=0&page_token=®ion=US' \
--header 'Authorization: Bearer <token>'{}