Zum Inhalt springen
GET /v1/group

Group detail

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gitlab-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/gitlab-api/v1/group" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gitlab-api/v1/group", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gitlab-api/v1/group");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/gitlab-api/v1/group",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": 9970,
        "name": "GitLab.org",
        "path": "gitlab-org",
        "ldap_cn": null,
        "web_url": "https://gitlab.com/groups/gitlab-org",
        "archived": false,
        "projects": [
            {
                "id": 82347088,
                "name": "Theseus",
                "path": "theseus",
                "_links": {
                    "self": "https://gitlab.com/api/v4/projects/82347088",
                    "events": "https://gitlab.com/api/v4/projects/82347088/events",
                    "issues": "https://gitlab.com/api/v4/projects/82347088/issues",
                    "labels": "https://gitlab.com/api/v4/projects/82347088/labels",
                    "members": "https://gitlab.com/api/v4/projects/82347088/members",
                    "repo_branches": "https://gitlab.com/api/v4/projects/82347088/repository/branches",
                    "cluster_agents": "https://gitlab.com/api/v4/projects/82347088/cluster_agents",
                    "merge_requests": "https://gitlab.com/api/v4/projects/82347088/merge_requests"
                },
                "mirror": false,
                "topics": [],
                "web_url": "https://gitlab.com/gitlab-org/theseus",
                "archived": false,
                "tag_list": [],
                "namespace": {
                    "id": 9970,
                    "kind": "group",
                    "name": "GitLab.org",
                    "path": "gitlab-org",
                    "web_url": "https://gitlab.com/groups/gitlab-org",
                    "full_path": "gitlab-org",
                    "parent_id": null,
                    "avatar_url": "/uploads/-/system/group/avatar/9970/project_avatar.png"
                },
                "avatar_url": null,
                "created_at": "2026-05-19T15:52:44.307Z",
                "creator_id": 13728016,
                "empty_repo": false,
                "readme_url": "https://gitlab.com/gitlab-org/theseus/-/blob/main/README.md",
                "star_count": 0,
                "updated_at": "2026-06-02T12:29:31.098Z",
                "visibility": "public",
                "description": "Documentation for the Theseus project.",
                "forks_count": 0,
                "lfs_enabled": true,
                "public_jobs": true,
                "jobs_enabled": true,
                "merge_method": "merge",
                "wiki_enabled": false,
                "import_status": "none",
                "squash_option": "default_off",
                "ci_config_path": "",
                "default_branch": "main",
                "emails_enabled": true,
                "issues_enabled": true,
                "emails_disabled": false,
                "issues_template": null,
                "ssh_url_to_repo": "[email protected]:gitlab-org/theseus.git",
                "description_html": "<p data-sourcepos=\"1:1-1:38\" dir=\"auto\">Documentation for the Theseus project.</p>",
               
…