tiktok/shop-web/seller-products-list
Get product list from specified seller Support pagination to load more products
Input
Idle
Example output — click Run to generate your own
API README
Get seller products list V1
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.

