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
The node "TikHub Complete" provides unified access to a wide range of social media data endpoints across four major platforms: TikTok, Instagram, YouTube, and X (formerly Twitter). It supports 149 endpoints in total, allowing users to retrieve detailed information such as videos, user profiles, analytics, posts, stories, reels, channels, tweets, timelines, and more.
This node is beneficial for scenarios where you want to aggregate or analyze social media data from multiple platforms within a single workflow. For example, marketers can use it to gather creator info and milestones across TikTok and Instagram to evaluate influencer performance. Data analysts can fetch video statistics from YouTube and tweet timelines from X to monitor trends.
Specifically, the "Get creator info and milestones" operation under the "Default" resource allows fetching detailed user-related data and milestone achievements on the selected platform.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok (64 endpoints), Instagram (56 endpoints), YouTube (16 endpoints), X/Twitter (13 endpoints) |
| 用户id/User id | The user ID of the creator on TikTok (required only when Platform is TikTok and Operation is "andmilestones"). Represents the unique identifier of the user whose info and milestones are being fetched. |
Output
The node outputs an array of JSON objects representing the data retrieved from the selected social media platform's API endpoint. Each item corresponds to one input item processed and contains the requested creator info and milestones data structured according to the platform's response schema.
If the API returns multiple records, they are flattened into individual output items. The output does not include binary data; it is purely JSON-formatted social media data.
Example output structure (simplified):
[
{
"creatorInfo": {
"userId": "123456",
"username": "creator_name",
"followers": 10000,
"milestones": [
{"type": "follower_count", "value": 10000, "date": "2024-01-01"},
{"type": "video_views", "value": 500000, "date": "2024-02-01"}
]
}
}
]
Dependencies
- Requires an API key credential for authenticating requests to the TikHub API service.
- The node makes HTTP requests to
https://api.tikhub.io. - No additional external dependencies beyond the configured API key and network access to TikHub.
Troubleshooting
- Unknown operation error: If you select an operation that does not exist for the chosen platform, the node will throw an error like
Unknown operation: <operation> for platform: <platform>. Ensure the operation name matches exactly and is supported by the selected platform. - Missing required parameters: For example, the "用户id/User id" property is required for the "andmilestones" operation on TikTok. Omitting this will cause the API request to fail.
- API authentication errors: If the API key credential is missing or invalid, requests will fail. Verify that the API key is correctly configured in n8n credentials.
- Rate limiting or quota exceeded: The TikHub API may enforce rate limits. If you encounter errors related to too many requests, consider adding delays or reducing request frequency.
- Network issues: Ensure your n8n instance has internet access to reach
api.tikhub.io.
Links and References
- TikHub API Documentation (for detailed endpoint descriptions)
- n8n Documentation - Creating Custom Nodes
- TikTok Developer Resources
- Instagram Graph API
- YouTube Data API
- X (Twitter) Developer Platform
This summary is based solely on static analysis of the provided source code and property definitions.