get_gitee_user_profile
gitee.comGets a public user profile from https://gitee.com, including follower/following counts, bio, public repository total, and any available contact fields. Returns status_code 404 for usernames that do not exist.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_gitee_user_profile?
Gets a public user profile from https://gitee.com, including follower/following counts, bio, public repository total, and any available contact fields. Returns status_code 404 for usernames that do not exist. 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
{
"message": "<string>",
"profile": {},
"username": "<string>",
"status_code": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/87715fb9-e266-489c-a3da-4120b74d0d2c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "87715fb9-e266-489c-a3da-4120b74d0d2c",
"variables": {
"username": "suhaibo",
"timeout_seconds": 20
}
}'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="87715fb9-e266-489c-a3da-4120b74d0d2c") — the "get_gitee_user_profile" function, which gets a public user profile from https://gitee.com, including follower/following counts, bio, public repository total, and any available contact fields. Returns status_code 404 for usernames that do not exist.. It takes username (str), timeout_seconds (int). Return the result as structured JSON.