Skip to main content
POST
/
api
/
tiktok
/
users
/tiktok/users
curl --request POST \
  --url https://api.anysite.io/api/tiktok/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "@type": "@tik_tok_user",
    "nickname": "<string>",
    "sec_uid": "<string>",
    "image": "<string>",
    "signature": "<string>",
    "bio_link": "<string>",
    "created_at": 123,
    "language": "<string>",
    "is_verified": false,
    "is_private": false,
    "is_organization": false,
    "is_seller": false,
    "is_commerce_user": false,
    "profile_url": "<string>",
    "follower_count": 123,
    "following_count": 123,
    "heart_count": 123,
    "video_count": 123,
    "digg_count": 123,
    "friend_count": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

TikTok handle ('khaby.lame'), '@handle', or full profile URL.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|@?[A-Za-z0-9_.]{1,40})$
Examples:

"khaby.lame"

"@mrbeast"

"https://www.tiktok.com/@khaby.lame"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
alias
string
required
@type
string
default:@tik_tok_user
nickname
string | null
sec_uid
string | null
image
string | null
signature
string | null
created_at
integer | null
language
string | null
is_verified
boolean
default:false
is_private
boolean
default:false
is_organization
boolean
default:false
is_seller
boolean
default:false
is_commerce_user
boolean
default:false
profile_url
string | null
follower_count
integer | null
following_count
integer | null
heart_count
integer | null
video_count
integer | null
digg_count
integer | null
friend_count
integer | null