Vai al contenuto
GET /v1/project

Project detail

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/gitlab-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/gitlab-api/v1/project" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gitlab-api/v1/project", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gitlab-api/v1/project");
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/project",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "id": 278964,
        "name": "GitLab",
        "path": "gitlab",
        "topics": [
            "hacktoberfest",
            "javascript",
            "ruby",
            "vue.js"
        ],
        "license": {
            "key": "mit",
            "name": "MIT License",
            "html_url": "https://opensource.org/licenses/MIT",
            "nickname": null,
            "source_url": null
        },
        "web_url": "https://gitlab.com/gitlab-org/gitlab",
        "tag_list": [
            "hacktoberfest",
            "javascript",
            "ruby",
            "vue.js"
        ],
        "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": "https://gitlab.com/uploads/-/system/project/avatar/278964/project_avatar.png",
        "created_at": "2015-05-20T10:47:11.949Z",
        "readme_url": "https://gitlab.com/gitlab-org/gitlab/-/blob/master/README.md",
        "star_count": 6031,
        "visibility": "public",
        "description": "GitLab is an open source end-to-end software development platform with built-in version control, issue tracking, code review, CI/CD, and more. Self-host GitLab on your own servers, in a container, or on a cloud provider.",
        "forks_count": 12141,
        "license_url": "https://gitlab.com/gitlab-org/gitlab/-/blob/master/LICENSE",
        "default_branch": "master",
        "ssh_url_to_repo": "[email protected]:gitlab-org/gitlab.git",
        "http_url_to_repo": "https://gitlab.com/gitlab-org/gitlab.git",
        "last_activity_at": "2026-06-02T16:25:33.058Z",
        "name_with_namespace": "GitLab.org / GitLab",
        "path_with_namespace": "gitlab-org/gitlab"
    },
    "meta": {
        "timestamp": "2026-06-02T16:52:21.083Z",
        "request_id": "83004325-c431-4d19-a70a-7a22dbeee6ac"
    },
    "status": "ok",
    "message": "Project detail",
    "success": true
}