TikHub Complete (149 Endpoints)
Actions64
- Get single video data
- Get single video data V2
- Batch Get Video Information
- Batch Get Video Information V2
- Get single video data by sharing link
- Get information of specified user
- Get user repost video data
- Get user homepage video data
- Get user like video data
- Get single video comments data
- Get comment replies data of specified video
- Get comprehensive search results of specified keywords
- Get video search results of specified keywords
- Get user search results of specified keywords
- Get music search results of specified keywords
- Get hashtag search results of specified keywords
- Get live search results of specified keywords
- Get details of specified music
- Get video list of specified music
- Get details of specified hashtag
- Get video list of specified hashtag
- Get follower list of specified user
- Get following list of specified user
- Get data of specified live room
- Get live room ranking list
- Check if live room is online
- Batch check if live rooms are online
- Get share short link
- Get share QR code
- Get location search results
- Get product search results
- Get shopping creator information
- Get creator showcase product list
- Get Shop ID by Share Link
- Get Product ID by Share Link
- Get product detail data (will be deprecated, use fetch_product_detail_v2 instead)
- Get product detail data V2
- Get product detail data V3
- Get product detail data V4
- Get product review data
- Get shop home page list data
- Get shop home page data
- Get shop product recommend data
- Get shop product list data
- Get shop product list data V2
- Get shop information data
- Get shop product category data
- Get live daily rank data
- Get user music list data
- Get content translation data
- Get home feed(recommend) video data
- TikTok APP encryption algorithm
- Get live room product list data
- Get live room product list data V2
- Increase the number of plays of the work according to the video ID
- Encrypt or Decrypt TikTok APP login request body
- Generate TikTok share link, call TikTok APP, and jump to the specified video details page
- Generate TikTok share link, call TikTok APP, and jump to the specified user profile
- Generate TikTok share link, call TikTok APP, and jump to the specified keyword search result
- Generate TikTok share link, call TikTok APP, and send private messages to specified users
- Get video metrics
- Detect fake views in video
- Get comment keywords analysis
- Get creator info and milestones
Overview
This node, named "TikHub Complete (149 Endpoints)," provides unified access to a wide range of social media data endpoints across four major platforms: TikTok, Instagram, YouTube, and X/Twitter. It supports 64 TikTok endpoints, 56 Instagram endpoints, 16 YouTube endpoints, and 13 X/Twitter endpoints, enabling users to retrieve diverse data such as videos, user profiles, analytics, posts, stories, reels, channels, tweets, timelines, and shop-related information.
The specific operation "Get live room product list data" under the TikTok platform allows users to fetch product listings associated with a TikTok live room. This is particularly useful for marketers, e-commerce managers, or social media analysts who want to monitor or analyze products being promoted in TikTok live streams.
Practical examples:
- An e-commerce manager can use this node to automatically gather product details from a TikTok live shopping session to update their inventory or pricing.
- A social media analyst might track product trends and popularity by extracting live room product lists from various creators.
- Marketers can integrate this data into dashboards to measure the effectiveness of live stream promotions.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 创作者的sec_user_id/Creator's sec_user_id (kol_id) | The unique sec_user_id of the creator on TikTok. Required for product list retrieval. |
| 数量/Number (count) | Number of items to retrieve. Optional; default is 20. Range: 1 to 1000. |
| 翻页参数/Page parameter (next_scroll_param) | Pagination parameter used to fetch the next set of results. Optional. |
| 商家id,店铺id/Seller id, shop id (seller_id) | Seller or shop ID associated with the products. Required. |
| 滚动参数,用于加载更多商品数据/Scroll parameter, used to load more product data (scroll_params) | Scroll parameter for loading additional product data. Optional. |
| 每页数量/Number per page (page_size) | Number of products per page. Optional; default is 20. Range: 1 to 1000. |
| 排序字段/Sorting field (sort_field) | Field by which to sort the product list. Optional. |
| 排序方式/Sorting method (sort_order) | Sorting order/method (e.g., ascending or descending). Optional. |
| 直播间id/Live room id (room_id) | Identifier of the TikTok live room. Required. |
| 主播id/Anchor id (author_id) | Identifier of the anchor or host of the live room. Required. |
| 数量/Number (page_size) | Number of items per page (duplicate property). Optional; default is 20. |
| 数量/Number (offset) | Offset for pagination. Optional; default is 20. |
| 地区/Region (region) | Region code or name to filter the product list. Optional. |
| 用户自己的cookie/User's own cookie (cookie) | User's own cookie string for authentication or session purposes. Optional. |
Note: Some properties appear multiple times with similar names but are treated as separate inputs depending on context.
Output
The node outputs an array of JSON objects representing the product list data retrieved from the TikTok live room. Each item in the output corresponds to a product with its associated details as returned by the TikHub API.
The exact structure of each product object depends on the API response but typically includes fields such as product ID, name, price, seller info, availability, and other metadata relevant to live room products.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for the TikHub service to authenticate requests.
- The node makes HTTP requests to the TikHub API endpoint at
https://api.tikhub.io. - Proper configuration of the API key credential within n8n is necessary.
- For some operations, user cookies may be optionally provided to enhance or authorize data access.
Troubleshooting
Common issues:
- Missing required parameters such as
kol_id,seller_id,room_id, orauthor_idwill cause errors. - Invalid or expired API credentials will result in authentication failures.
- Incorrect pagination parameters (
next_scroll_param,scroll_params) may lead to incomplete or empty results. - Rate limiting by the TikHub API could cause request failures.
- Missing required parameters such as
Error messages:
"Unknown operation"error indicates that the specified operation is not supported for the selected platform.- Network or API errors will return messages from the TikHub API; ensure network connectivity and valid credentials.
- Parameter validation errors occur if required inputs are missing or out of allowed ranges.
Resolutions:
- Double-check all required input fields before execution.
- Verify API key validity and permissions.
- Use correct pagination tokens as returned by previous calls.
- Handle errors gracefully using the node's "Continue On Fail" option if needed.
Links and References
- TikHub API Documentation (Assumed based on base URL)
- TikTok Live Shopping official resources (for understanding live room and product concepts)
- n8n documentation on creating and using custom nodes and credentials