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 various types of data such as videos, users, analytics, posts, stories, reels, channels, tweets, timelines, and more.
The specific operation "Get single video comments data" enables fetching comments for a single video on the selected platform. This is useful for social media analysts, marketers, content creators, or developers who want to gather user engagement data, perform sentiment analysis, monitor community feedback, or build dashboards aggregating comments from multiple platforms.
Practical examples:
- Fetching TikTok video comments to analyze audience reactions.
- Retrieving YouTube video comments for moderation or sentiment tracking.
- Collecting Instagram reel comments to measure engagement.
- Getting X/Twitter tweet replies for customer support or brand monitoring.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 作品id/Video id (aweme_id) | TikTok-specific: The unique ID of the TikTok video whose comments are to be fetched. Required. |
| 游标/Cursor (cursor) | TikTok-specific: Pagination cursor to navigate through comment pages. Optional, default 20. |
| 数量/Number (count) | TikTok-specific: Number of comments to fetch per request. Optional, default 20. |
| 视频ID/Video ID (video_id) | YouTube-specific: The unique ID of the YouTube video whose comments are to be fetched. Required. |
| 翻页令牌/Pagination token (continuation_token) | YouTube-specific: Token used for paginating through comments. Optional. |
Note: The properties shown depend on the selected platform and operation. For this operation ("videocomments"):
- TikTok requires
aweme_idand optionally supportscursorandcount. - YouTube requires
video_idand optionally supportscontinuation_token. - Instagram and X/Twitter do not have specified properties for this operation in the provided data.
Output
The node outputs an array of JSON objects representing the comments data retrieved from the selected platform's API. Each item corresponds to a comment or a related data structure returned by the endpoint.
- The output JSON structure depends on the platform and the specific API response format.
- The node wraps the raw API response data under the
.jsonproperty for each output item. - If the API returns nested data, it is included as-is within the JSON.
- No binary data output is indicated for this operation.
Example output snippet (conceptual):
[
{
"json": {
"comment_id": "1234567890",
"user": {
"id": "user_1",
"name": "John Doe"
},
"text": "Great video!",
"created_at": "2024-01-01T12:00:00Z"
}
},
...
]
Dependencies
- Requires an API key credential for authenticating with the TikHub API service.
- The node makes HTTP requests to
https://api.tikhub.io. - No other external dependencies are required.
- Users must configure the TikHub API credential in n8n before using this node.
Troubleshooting
- Unknown operation error: If the node throws an error like
Unknown operation: videocomments for platform: tiktok, verify that the operation name and platform are correctly set and supported. - API authentication errors: Ensure the TikHub API credential is properly configured and valid.
- Empty or incomplete data: Check if the video ID or aweme_id is correct and that the video has comments available.
- Pagination issues: When fetching large numbers of comments, use the
cursor(TikTok) orcontinuation_token(YouTube) properly to paginate through results. - Rate limits: The TikHub API may enforce rate limits; handle errors gracefully and consider adding delays or retries.
Links and References
- TikHub API Documentation (general reference for the API endpoints)
- TikTok Video Comments API
- YouTube Data API - Comments
- n8n Documentation for configuring credentials and using nodes