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," provides unified access to a wide range of social media data endpoints (149 in total) across four major platforms: TikTok, Instagram, YouTube, and X/Twitter. It enables users to retrieve various types of data such as videos, user profiles, analytics, posts, stories, reels, tweets, channels, and more through a single interface.
For the specified Resource "Default" and Operation "Get video list of specified hashtag" on TikTok, the node fetches a list of videos associated with a given hashtag or music ID. This is useful for social media marketers, content creators, and analysts who want to gather trending or relevant video content based on hashtags or music trends on TikTok.
Practical examples:
- Retrieve the latest TikTok videos tagged with a specific hashtag to analyze trending content.
- Collect videos related to a particular music ID to understand how a song is being used across TikTok.
- Use the cursor and count parameters to paginate through large sets of video data efficiently.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter |
| 音乐id/Music id | The music ID on TikTok to filter videos by a specific music track (required for TikTok videolist operation) |
| 游标/Cursor | Pagination cursor to specify the starting point for fetching results (default 20, min 1, max 1000) |
| 数量/Number | Number of videos to retrieve per request (default 20, min 1, max 1000) |
| 话题id/Hashtag id | The hashtag ID on TikTok to filter videos by a specific hashtag (required for TikTok videolist operation) |
Output
The node outputs an array of JSON objects representing the retrieved video data from the specified platform endpoint. Each item corresponds to one video entry containing all available metadata returned by the TikHub API for that video.
- The output JSON structure depends on the TikHub API response for the "Get video list of specified hashtag" operation.
- If the API returns binary data (not indicated here), it would be included accordingly, but this operation primarily returns JSON video metadata.
Dependencies
- Requires an active API key credential for the TikHub service.
- The node makes HTTP requests to the TikHub API base URL:
https://api.tikhub.io. - Proper configuration of the TikHub API credentials within n8n is necessary for authentication.
Troubleshooting
Common issues:
- Missing or invalid API key credential will cause authentication failures.
- Providing incorrect or empty required parameters like
music_idorch_id(hashtag id) will result in errors or empty responses. - Exceeding the allowed range for
cursororcountparameters may cause the API to reject the request.
Error messages:
"Unknown operation"error indicates that the selected operation is not supported or incorrectly specified.- Network or API errors will return messages from the TikHub API; ensure network connectivity and valid credentials.
- If the node throws errors about missing parameters, verify that all required fields are filled correctly.
Resolution tips:
- Double-check all required input properties before execution.
- Ensure the TikHub API key is valid and has sufficient permissions.
- Use smaller
countvalues if pagination or rate limits are suspected.
Links and References
- TikHub API Documentation (for detailed endpoint info)
- n8n Documentation (for general node usage and credential setup)