OpenapiGit
Returns one repo with its live ref state: every branch name and the resolved…
Returns one repo with its live ref state: every branch name and the resolved HEAD commit.
GET /v1/git/repos/{name}
| Address | https://api.hanzo.ai/v1/git/repos/{name} |
| Method | GET |
| Operation | get_git_repos_by_name |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns one repo with its live ref state: every branch name and the resolved HEAD commit. Both are read from the object store on each call, so an empty repo reports no branches and an empty head rather than failing. A repo outside the caller's scope is not found.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
name | path | string | yes | Name is the repo's org-unique handle, from the :name path segment. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | repoView | ok |
200 body — 14 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
branches | body | string[] | — | Branches are the repo's branch names. |
cloneUrl | body | string | — | CloneURL is the HTTPS smart-HTTP remote git clone takes. |
createdAt | body | string | — | CreatedAt is RFC 3339 UTC. |
defaultBranch | body | string | — | DefaultBranch is where HEAD points on a fresh repo ("main"). |
description | body | string | — | Description is the caller-supplied blurb (max 4KiB). |
head | body | string | — | Head is the resolved HEAD commit, empty on an empty repo. |
id | body | string | — | ID is the repo's stable, prefixed identifier ("repo_" + 128 random bits). |
name | body | string | — | Name is the org-unique handle, and the last path segment of both URLs below. |
org | body | string | — | Org owns the repo — the gateway-minted X-Org-Id, and the isolation key. |
project | body | string | — | Project is the optional sub-scope the repo lives in; absent for the org's default scope. |
public | body | boolean | — | Public grants ANONYMOUS read (fetch) only; push and the whole control plane stay org-authed. |
sizeBytes | body | integer | — | SizeBytes is the repo's measured on-disk size, re-measured on create, after each push, and after a gc. |
sshUrl | body | string | — | SSHURL is the scp-style SSH remote (git@host:org/repo.git). |
updatedAt | body | string | — | UpdatedAt is RFC 3339 UTC, empty until the first write. |
Failure carries the platform error shape — see Errors.
Examples
hanzo git repos get <name>import { Configuration, GitApi } from 'hanzoai';
const api = new GitApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getGitReposByName({ name: 'name' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import GitApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = GitApi(client).get_git_repos_by_name(name='name')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.GitAPI.GetGitReposByName(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, git_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = git_api::get_git_repos_by_name(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.GitApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new GitApi(client).getGitReposByName();curl https://api.hanzo.ai/v1/git/repos/<name> \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches git through the git tool, which names its 56 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_git"
}
}
}'How is this guide?