get_user_profile
tiktok.comGets public TikTok profile information by username from https://www.tiktok.com. Returns display metadata, bio links, avatar URLs, verification, and full non-empty profile/stat fields exposed on the user page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_user_profile?
Gets public TikTok profile information by username from https://www.tiktok.com. Returns display metadata, bio links, avatar URLs, verification, and full non-empty profile/stat fields exposed on the user page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"bio": "<string>",
"user": {},
"stats": {},
"bio_link": "<string>",
"stats_v2": {},
"username": "<string>",
"verified": true,
"avatar_url": "<string>",
"like_count": 0,
"source_url": "<string>",
"video_count": 0,
"display_name": "<string>",
"follower_count": 0,
"following_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/09fac50a-9d37-4f80-bc97-2e98c187ad44/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "09fac50a-9d37-4f80-bc97-2e98c187ad44",
"variables": {
"username": "lilireinhart",
"timeout_seconds": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="09fac50a-9d37-4f80-bc97-2e98c187ad44") — the "get_user_profile" function, which gets public TikTok profile information by username from https://www.tiktok.com. Returns display metadata, bio links, avatar URLs, verification, and full non-empty profile/stat fields exposed on the user page.. It takes username (str), timeout_seconds (int). Return the result as structured JSON.