tiktok_creator_profile
Fetch a TikTok creator's public profile: follower/following counts, total videos and likes, verification status, bio, region, and avatar. Use for influencer discovery, creator analytics, and audience-size vetting for UGC/brand deals. `handle` accepts an @username (e.g. `@charlidamelio`) or a numeric user_id.
Parameters2
| handle | string | required | @username or numeric user_id |
| expand | boolean | optional | Return the full untrimmed payload. Default false = compact JSON. |
Raw schema
{
"type": "object",
"properties": {
"handle": {
"type": "string",
"description": "@username or numeric user_id"
},
"expand": {
"type": "boolean",
"description": "Return the full untrimmed payload. Default false = compact JSON."
}
},
"required": [
"handle"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}