Advertise a repository's refs to a git client — GET /v1/git/{org}/{project}/{repo}/info/refs
The ref-advertisement phase of git's smart-HTTP protocol — the first request a clone, a fetch and a push all make.
GET /v1/git/{org}/{project}/{repo}/info/refs
| Address | https://api.hanzo.ai/v1/git/{org}/{project}/{repo}/info/refs |
| Method | GET |
| Operation | get_git_by_org_by_project_by_repo_info_refs |
| Auth | Authorization: Bearer $HANZO_API_KEY |
The ref-advertisement phase of git's smart-HTTP protocol — the first request a clone, a fetch and a push all make. ?service= selects which: git-upload-pack advertises for a fetch, git-receive-pack for a push, and any other value is 400.
ANONYMOUS ONLY FOR FETCH, AND ONLY ON A PUBLIC REPOSITORY. The push advertisement always requires an authenticated org, and where a path org is present it must equal the authenticated one. A private repository reached without its org is 404, indistinguishable from one that does not exist. Addressed under the API prefix, with the PROJECT as a middle path segment: project scope otherwise rides a header a git client cannot send, so this path is the only usable remote for a project-scoped repository. This is git's own wire protocol, not an API call to make by hand: point a git client at the clone URL and it makes this request itself.
Request
3 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
org | path | string | yes | |
project | path | string | yes | |
repo | path | string | yes |
Response
The document declares no response body for this operation. It answers 200 on success and the platform error shape on failure — see Errors.
Examples
hanzo git org project info refs <org> <project> <repo>import { Configuration, GitApi } from 'hanzoai';
const api = new GitApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getGitByOrgByProjectByRepoInfoRefs({ org: 'org', project: 'project', repo: 'repo' });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_by_org_by_project_by_repo_info_refs(org='org', project='project', repo='repo')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.GitAPI.GetGitByOrgByProjectByRepoInfoRefs(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_by_org_by_project_by_repo_info_refs(&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).getGitByOrgByProjectByRepoInfoRefs();curl https://api.hanzo.ai/v1/git/<org>/<project>/<repo>/info/refs \
-H "Authorization: Bearer $HANZO_API_KEY"Tool git, op get_git_by_org_by_project_by_repo_info_refs — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "git",
"arguments": {
"op": "get_git_by_org_by_project_by_repo_info_refs",
"input": {
"org": "<org>",
"project": "<project>",
"repo": "<repo>"
}
}
}
}'How is this guide?