List projects
Lists the projects the org's GitLab connection can reach — membership projects, most recently active first.
GET /v1/provider/gitlab/projects
| Address | https://api.hanzo.ai/v1/provider/gitlab/projects |
| Method | GET |
| Operation | get_provider_gitlab_projects |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists the projects the org's GitLab connection can reach — membership projects, most recently active first.
Request
GET /v1/provider/gitlab/projects takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | provider.gitlabProjectsOut | ok |
default | problem-details | refused |
200 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
account | body | string | — | Account is the connected GitLab username, so a client can label the list without a second call. |
projects | body | provider.gitlabProjectView[] | — | Projects is every project the token reaches, newest activity first. |
projects[].cloneUrl | body | string | — | CloneURL is the https remote to clone. |
projects[].defaultBranch | body | string | — | DefaultBranch is the branch a clone lands on ("main" when GitLab names none, which is what an empty project reports). |
projects[].description | body | string | — | Description is the project's own, empty when it has none. |
projects[].fullName | body | string | — | FullName is the namespace path ("acme/widgets", "acme/team/widgets" for a subgroup) — the string GitLab calls path_with_namespace. |
projects[].htmlUrl | body | string | — | HTMLURL is the project's page. |
projects[].name | body | string | — | Name is the project's path segment ("widgets"), not its display name. |
projects[].private | body | boolean | — | Private is true for anything not publicly visible (private or internal). |
projects[].pushedAt | body | string | — | PushedAt is RFC3339 last activity, so a client can sort or say "2h ago". |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider gitlab projectsimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getProviderGitlabProjects();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProviderApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProviderApi(client).get_provider_gitlab_projects()cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.GetProviderGitlabProjects(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, provider_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = provider_api::get_provider_gitlab_projects(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProviderApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new ProviderApi(client).getProviderGitlabProjects();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl https://api.hanzo.ai/v1/provider/gitlab/projects \
-H "Authorization: Bearer $HANZO_API_KEY"MCP declares no tool for provider — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?