tiktok/creator/showcase-product-list
Retrieve the list of products currently displayed in a TikTok Shop creator's showcase. Useful for product management, analytics, and monitoring promoted items.
Input
Idle
Example output — click Run to generate your own
API README
Get Showcase Product List
Purpose:
- Retrieve the list of products currently displayed in a TikTok Shop creator's showcase.
- Useful for product management, analytics, and monitoring promoted items.
Notes:
- Only available for TikTok creator accounts with the showcase feature enabled.
- Supports pagination via
countandoffset.
Parameters:
- cookie: User Cookie string for authentication
- count: Number of products per page (default 20)
- offset: Pagination offset (default 0)
- proxy: Optional HTTP proxy address
- Example:
http://username:password@host:port
- Example:
Return Structure:
products(List[Dict]): List of showcased products, including:product_id,title,format_available_price,seller_info,cover,images,source,stock_status,review_status,affiliate_info,category_info.
Example Request:
{
"cookie": "your_cookie_string",
"count": 20,
"offset": 0
}
Example Response Snippet:
{
"products": [
{
"product_id": "1730905148396180014",
"title": "Car Paint Care Spray",
"format_available_price": "$7.94",
"seller_info": {
"seller_id": "7496108716782225966",
"shop_name": "moon moon shop shop"
},
"cover": {
"url_list": [
"https://example.com/xxx.jpg"
]
},
"images": [...],
"source": "Affiliate",
"stock_status": 1,
"review_status": 1,
"affiliate_info": {
"commission_with_currency": "$0.95",
"commission_rate": 1200
},
"category_info": {
"name": "Beauty & Personal Care"
}
}
]
}
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

