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 endpoints in total, allowing users to retrieve various types of data such as videos, user profiles, analytics, posts, stories, reels, channels, tweets, timelines, and more.
The specific operation "Get user repost video data" under the "Default" resource for the TikTok platform enables fetching reposted video information for a given TikTok user ID. This is useful for scenarios where you want to analyze or monitor content that a user has shared or reposted on TikTok.
Practical examples include:
- Marketing analysts tracking which videos a TikTok influencer has reposted.
- Social media managers gathering repost data to understand content sharing trends.
- Developers building dashboards that aggregate reposted video metrics for TikTok users.
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 TikTok user ID for whom to fetch reposted video data. Must be a number between 1 and 1000. |
| 偏移量/Offset | Optional offset value for pagination when retrieving reposted videos. Number between 1 and 1000. |
| 数量/Number | Optional number of reposted videos to retrieve. Number between 1 and 1000. |
Output
The node outputs JSON data representing the reposted video information retrieved from the TikHub API for the specified TikTok user. The output structure corresponds directly to the API response's data field, which typically includes details about each reposted video such as video IDs, metadata, timestamps, and possibly engagement statistics.
If multiple items are returned, they are output as an array of JSON objects, each representing one reposted video entry.
No binary data output is indicated by the source code.
Dependencies
- Requires an API key credential for the TikHub service to authenticate requests.
- The node makes HTTP requests to the TikHub API at
https://api.tikhub.io. - No other external dependencies are required.
- Proper configuration of the TikHub API credential within n8n is necessary.
Troubleshooting
- Unknown operation error: If the operation name does not match any known endpoint, the node throws an error indicating an unknown operation for the selected platform. Ensure the operation parameter is correctly set to "repostvideos" for this use case.
- API request failures: Network issues, invalid credentials, or exceeding rate limits may cause errors. Verify API key validity and network connectivity.
- Invalid input values: User ID, offset, and count must be numbers within the specified ranges (1 to 1000). Providing out-of-range or non-numeric values may cause errors.
- Partial failures with continueOnFail enabled: If enabled, the node will return error messages per item instead of failing the entire execution, allowing partial data retrieval.
Links and References
- TikHub API Documentation (general reference for available endpoints)
- n8n Documentation on Creating Custom Nodes
- TikTok Developer Resources (for understanding user and video data concepts)