Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/gitlab-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "auth": "none upstream (no token); this gateway requires x-api-key",
        "name": "GitLab API",
        "note": "Projects (detail, commits, branches, tags, releases, issues, merge requests, languages, README), users, groups and project search. Pass project as a numeric id or 'group/name' path (or a gitlab.com URL). Live, no cache; paginated with page + per_page (max 100). (Member lists require authentication on GitLab and are not exposed.)",
        "source": "GitLab.com REST API v4 (api/v4), unauthenticated public read — via rotating proxy",
        "endpoints": 15
    },
    "meta": {
        "timestamp": "2026-06-02T16:52:53.300Z",
        "request_id": "266ad027-83bf-4d66-ac31-55d124b21431"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}