TikTok modelsapi generation api

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 count and offset.

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

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.

Related Models

tiktok/creator/account-health-statusRetrieve the health status of a TikTok Shop creator account, including the health score over the past 90 days and the current number of accumulated violation points. About violation points: Violation points are key metrics used by TikTok to measure the health of a creator account. Higher violation points indicate worse account health, and may lead to restrictions such as reduced exposure, suspension, or account bans. Violation points directly impact the account’s visibility and recommendation on the platform.tiktok/creator/account-insights-overviewRetrieve performance overview of a TikTok Shop creator account within a specified date range, including metrics like revenue, exposure, clicks, and orders. By default, it aggregates data from the month of `start_date` (e.g., if `start_date` is 2025-04-01, it retrieves data for the entire month of April).tiktok/creator/account-violation-listRetrieve the violation history of a TikTok Shop creator account, providing details about past violations and corresponding enforcement actions. The returned violation records include violation type, violation time, violation reasons, enforcement actions, appeal status, and eligibility for appeal. Pagination is supported to retrieve multiple records in chronological order. Suitable for creator account risk management, health monitoring, and compliance auditing.tiktok/creator/creator-account-infoRetrieve basic information of a TikTok Shop creator account, including username, avatar URLs, account ID, register region, partner binding info, and permission list. Useful for verifying account status, displaying user profile data, checking partner binding status, and determining access permissions for business processes.tiktok/creator/live-analytics-summaryRetrieve a summary of live streaming performance for a TikTok Shop creator account within a specified time range. By default, it covers one full calendar month starting from the provided `start_date` (e.g., input `04-01-2025` will fetch data for the entire April 2025).tiktok/creator/product-analytics-listRetrieve the list of products promoted by a TikTok Shop creator account within a specified time range, along with their sales analytics. Supports sorting by revenue or product publish time and allows pagination.tiktok/creator/product-related-videosRetrieve the list of all videos associated with a specified product along with their interaction metrics (such as like count, comment count, share count). Useful for analyzing the promotional effectiveness and differences of the same product across different creators' videos. Supports time-based filtering, defaulting to the calendar month of the specified start_date.tiktok/creator/video-analytics-summaryRetrieve a video performance overview for a TikTok Shop creator account over a specified time range. By default, the API fetches data for the past 30 days (or full calendar month based on the platform settings). Useful for analyzing metrics like video count, views, new followers, and generated GMV.