list_repository_commits
gitee.comLists repository commits from https://gitee.com with page/per_page pagination and newest-first ordering. Returns commit objects with SHA, author, committer, message, and all other non-empty commit fields exposed by Gitee.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_repository_commits?
Lists repository commits from https://gitee.com with page/per_page pagination and newest-first ordering. Returns commit objects with SHA, author, committer, message, and all other non-empty commit fields exposed by Gitee. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass owner, repo, page, per_page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"commits": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/2f31c007-d2d7-409c-9f11-9c83e8e5761f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2f31c007-d2d7-409c-9f11-9c83e8e5761f",
"variables": {
"owner": "mindspore",
"repo": "mindspore",
"page": 1,
"per_page": 20,
"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="2f31c007-d2d7-409c-9f11-9c83e8e5761f") — the "list_repository_commits" function, which lists repository commits from https://gitee.com with page/per_page pagination and newest-first ordering. Returns commit objects with SHA, author, committer, message, and all other non-empty commit fields exposed by Gitee.. It takes owner (str), repo (str), page (int), per_page (int), timeout_seconds (int). Return the result as structured JSON.