tiktok/shop-web/search-products-list
Search products by keyword Support pagination to load more results
Input
Idle
Example output — click Run to generate your own
API README
Search products list V1
Purpose:
- Search products by keyword
- Support pagination to load more results Parameters:
- search_word: Search keyword (required)
- offset: Offset for pagination (default 0)
- page_token: Page token for next page
- 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",
"product_marketing_info": {} // Marketing info
}
],
"has_more": true, // Has more
"load_more_params": { // Pagination params
"offset": 30,
"page_token": "xxx",
"api_source": 2
}
}
}
[Example]
search_word = "labubu" offset = 0 page_token = "" region = "US"
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

