/v1/meta
Spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}