TikTok API

TikTok Profile API

Full public profile for a handle: display name, bio, avatar, follower and like counts.

POST/v1/run/tiktok.profile
Uptime
100.00%
30d · 3,834 calls
Requests
3,834
30d · weekly, last 12 wks
Response
9.6s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "found": true,
  "data": {
    "handle": "cristiano",
    "nickname": "Cristiano Ronaldo",
    "bio": "SIUUU 🇵🇹",
    "verified": true,
    "followers": 64200000,
    "following": 12,
    "likes": 412000000,
    "videoCount": 38,
    "avatarUrl": "https://p16.tiktokcdn.com/cristiano.jpg"
  }
}
Response interface
interface TiktokProfileResponse {
  data: {
    avatarUrl: string;
    bio: string;
    displayName: string;
    externalUrl?: string;
    followers: number;
    following: number;
    handle: string;
    likes: number;
    secUid?: string;
    userId?: string;
    verified: boolean;
    videos: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tiktok.profile
curl -X POST https://api.getanyapi.com/v1/run/tiktok.profile \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"cristiano"}'
FieldTypeExample value
Request body
handlestring"cristiano"TikTok username without the leading @ (e.g. "stoolpresidente").
Response
foundbooleantrue
dataobject
data.handlestring"cristiano"
data.nicknamestring"Cristiano Ronaldo"
data.biostring"SIUUU 🇵🇹"
data.verifiedbooleantrue
data.followersnumber64200000
data.followingnumber12
data.likesnumber412000000
data.videoCountnumber38
data.avatarUrlstring"https://p16.tiktokcdn.com/cristiano.jpg"
Price
Price per requestUSD$0.0005
Price /1k reqUSD$0.50

FAQ

About the TikTok Profile API

The AnyAPI TikTok Profile API returns TikTok profile data as normalized JSON from one POST call to /v1/run/tiktok.profile. Full public profile for a handle: display name, bio, avatar, follower and like counts. AnyAPI routes each request across 3 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok profile calls through AnyAPI succeeded, with a median response time of 9.6 seconds across 3,834 measured calls.

It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Full public profile for a handle: display name, bio, avatar, follower and like counts. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of TikTok profile calls through AnyAPI succeeded, with a median response time of 9.6 seconds across 3,834 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.