Skip to main content
GET
/
user
/
profile
Get TikTok User Profile
curl --request GET \
  --url https://api.zilodata.com/api/v1/tiktok/user/profile \
  --header 'Authorization: Bearer <token>'
{
  "username": "tiktok_user",
  "displayName": "TikTok Creator",
  "followerCount": 1000000,
  "followingCount": 500,
  "videoCount": 250,
  "likeCount": 5000000,
  "bio": "Content creator | Follow for daily videos",
  "isVerified": true,
  "profileUrl": "https://www.tiktok.com/@tiktok_user"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

username
string
required

TikTok username (without @)

Response

Successful response

username
string
Example:

"tiktok_user"

displayName
string
Example:

"TikTok Creator"

followerCount
integer
Example:

1000000

followingCount
integer
Example:

500

videoCount
integer
Example:

250

likeCount
integer
Example:

5000000

bio
string
Example:

"Content creator | Follow for daily videos"

isVerified
boolean
Example:

true

profileUrl
string<uri>
Example:

"https://www.tiktok.com/@tiktok_user"