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>
/video/: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
userHandle*
string
Provide the unique TikTok User Handle of the TikTok user
Fetch TikTok Video by Video Id and User Handle
GET
https://
<baseURL>
/videos/:userHandle
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
userHandle*
string
Provide the unique TikTok User Handle of the video's author
videoId*
string
Provide the id of the video
Fetch TikTok User by UserHandle
GET
https://
<baseURL>
/video/: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
userHandle*
string
Provide the unique TikTok User Handle of the TikTok user
Fetch TikTok Followers by UserHandle
GET
https://
<baseURL>
/followers/:userHandle
<Description of the endpoint>
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
name
string
Name of the user
age
number
Age of the user
Response
Fetch TikTok Followings by UserHandle
GET
https://
<baseURL>
/followings/:userHandle
<Description of the endpoint>
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
name
string
Name of the user
age
number
Age of the user
Response
Last updated