TikTok
List of TikTok APIs
To obtain x-api-key please contact the team. You can find more information at the "Connect With Us" section
Authentication
All requests require a valid API key to be included in the x-api-key header.
Fetch TikTok User by UserHandle
GET
https://
<baseURL>
/user/:userHandle
Fetches the details of a TikTok user by their user handle
If the user exists in the database, it returns the existing user data. Otherwise, it fetches the user data from TikTok and saves it.
Request Parameters
Name | Type | Description |
---|---|---|
userHandle* | string | Provide the unique TikTok User Handle of the TikTok user |
Fetch TikTok Video by Video Id and User Handle
GET
https://
<baseURL>
/video/:userHandle/:videoId
Fetches details of a TikTok video given video id and user handle of video's author. These parameters can be easily found in a typical TikTok video link.
Request Parameters
Name | Type | Description |
---|---|---|
userHandle* | string | Provide the unique TikTok User Handle of the video's author |
videoId* | string | Provide the id of the video |
Last updated