Marketplace
No threads yet
Live

get_gitee_repository_details

gitee.com

Fetches comprehensive metadata for a single repository from https://gitee.com, including namespace, owner and assigner objects, project membership, labels, license, activity counts, and timestamps.

Parameters2
Runs10
Updated10d ago
Degraded10 runs · 80% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_gitee_repository_details?

Fetches comprehensive metadata for a single repository from https://gitee.com, including namespace, owner and assigner objects, project membership, labels, license, activity counts, and timestamps. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass owner, repo and get the result back without maintaining a scraper.

Response

{
  "id": 0,
  "gvp": true,
  "url": "<string>",
  "fork": true,
  "name": "<string>",
  "paas": {},
  "path": "<string>",
  "owner": {},
  "parent": {},
  "public": true,
  "status": "<string>",
  "license": "<string>",
  "members": [
    "<string>"
  ],
  "private": true,
  "ssh_url": "<string>",
  "testers": [
    {}
  ],
  "assignee": [
    {}
  ],
  "assigner": {},
  "has_page": true,
  "has_wiki": true,
  "homepage": "<string>",
  "html_url": "<string>",
  "internal": true,
  "keys_url": "<string>",
  "language": "<string>",
  "programs": [
    {}
  ],
  "tags_url": "<string>",
  "blobs_url": "<string>",
  "forks_url": "<string>",
  "full_name": "<string>",
  "hooks_url": "<string>",
  "namespace": {},
  "pulls_url": "<string>",
  "pushed_at": "<string>",
  "recommend": true,
  "created_at": "<string>",
  "enterprise": {},
  "has_issues": true,
  "human_name": "<string>",
  "issues_url": "<string>",
  "labels_url": "<string>",
  "outsourced": true,
  "updated_at": "<string>",
  "can_comment": true,
  "commits_url": "<string>",
  "description": "<string>",
  "forks_count": 0,
  "branches_url": "<string>",
  "comments_url": "<string>",
  "releases_url": "<string>",
  "issue_comment": true,
  "default_branch": "<string>",
  "milestones_url": "<string>",
  "project_labels": [
    {}
  ],
  "stargazers_url": "<string>",
  "testers_number": 0,
  "watchers_count": 0,
  "project_creator": "<string>",
  "assignees_number": 0,
  "contributors_url": "<string>",
  "stargazers_count": 0,
  "collaborators_url": "<string>",
  "issue_comment_url": "<string>",
  "notifications_url": "<string>",
  "open_issues_count": 0,
  "issue_template_source": "<string>",
  "pull_requests_enabled": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cceb62cc-3e7e-4f36-afbd-90a41b83f8e9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cceb62cc-3e7e-4f36-afbd-90a41b83f8e9",
    "variables": {
        "owner": "openharmony",
        "repo": "docs"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="cceb62cc-3e7e-4f36-afbd-90a41b83f8e9") — the "get_gitee_repository_details" function, which fetches comprehensive metadata for a single repository from https://gitee.com, including namespace, owner and assigner objects, project membership, labels, license, activity counts, and timestamps..

It takes owner (str), repo (str). Return the result as structured JSON.