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 149 different API endpoints in total, allowing users to retrieve detailed information such as videos, comments, user profiles, analytics, posts, stories, reels, tweets, channels, and more.
Specifically, for the operation "Get comment replies data of specified video" on the TikTok platform, the node fetches replies to a particular comment on a given TikTok video. This is useful for social media analysts, marketers, or developers who want to monitor engagement, analyze conversations, or build applications that interact with TikTok comment threads.
Practical Examples
- Fetching all replies to a specific comment on a TikTok video to analyze audience sentiment.
- Building a dashboard that displays nested comment replies for moderation or community management.
- Aggregating comment reply data for influencer marketing reports.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 作品id/Video id | The unique identifier of the TikTok video for which comment replies are requested. |
| 评论id/Comment id | The unique identifier of the comment whose replies you want to retrieve. |
| 游标/Cursor | Pagination cursor to specify the starting point for fetching replies. Optional; default is 20. |
| 数量/Number | Number of comment replies to retrieve. Optional; default is 20. |
Output
The node outputs an array of JSON objects representing the comment replies data retrieved from the TikHub API. Each item corresponds to a single comment reply with its associated metadata as provided by the TikTok endpoint.
- The output JSON structure typically includes fields such as reply text, author details, timestamps, and possibly engagement metrics.
- If the node encounters errors during execution, it can output error messages paired with the corresponding input item index.
- The node does not output binary data for this operation.
Dependencies
- Requires an active API key credential for the TikHub service to authenticate requests.
- The node communicates with the TikHub API at
https://api.tikhub.io. - No additional external dependencies are required beyond the configured API key.
- Proper configuration of the API key credential within n8n is necessary for successful operation.
Troubleshooting
Common Issues:
- Invalid or missing video ID or comment ID parameters will cause the API request to fail.
- Exceeding the allowed count or cursor limits (1 to 1000) may result in errors.
- Network issues or invalid API credentials will prevent data retrieval.
Error Messages:
"Unknown operation"error indicates that the selected operation is not supported for the chosen platform.- API errors returned from TikHub will be included in the output if "Continue On Fail" is enabled.
Resolutions:
- Verify that the video ID and comment ID are correct and correspond to existing TikTok content.
- Ensure the API key credential is valid and has sufficient permissions.
- Adjust pagination parameters (
cursorandcount) within allowed ranges. - Enable "Continue On Fail" to handle partial failures gracefully.
Links and References
- TikHub API Documentation (general reference for available endpoints)
- TikTok Developer Resources
- n8n Documentation on Creating Custom Nodes