/v1/project/tags
Tags
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/gitlab-api/v1/project/tags" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gitlab-api/v1/project/tags", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gitlab-api/v1/project/tags");
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/tags",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": [
{
"name": "v18.10.7-ee",
"commit": {
"id": "0dafa5577c4a4eea262a393392b75b43f2ea80f1",
"title": "Update VERSION files",
"message": "Update VERSION files\n\n[merge-train skip]",
"web_url": "https://gitlab.com/gitlab-org/gitlab/-/commit/0dafa5577c4a4eea262a393392b75b43f2ea80f1",
"short_id": "0dafa557",
"trailers": [],
"created_at": "2026-05-26T23:26:31.000+00:00",
"parent_ids": [
"108bca764cc5f02e7020869631c3e99cc1f2c8b1"
],
"author_name": "GitLab Release Tools Bot",
"author_email": "[email protected]",
"authored_date": "2026-05-26T23:26:31.000+00:00",
"committed_date": "2026-05-26T23:26:31.000+00:00",
"committer_name": "GitLab",
"committer_email": "[email protected]",
"extended_trailers": []
},
"target": "955b7b912d0fd21d54c2c7479c82bca9c31d3888",
"message": "Version v18.10.7-ee",
"release": null,
"protected": true,
"created_at": "2026-05-26T23:31:41.000Z"
},
{
"name": "v18.11.4-ee",
"commit": {
"id": "78d6b913cb59e2ae115c4d7ddf4f065e654bbdd4",
"title": "Update VERSION files",
"message": "Update VERSION files\n\n[merge-train skip]",
"web_url": "https://gitlab.com/gitlab-org/gitlab/-/commit/78d6b913cb59e2ae115c4d7ddf4f065e654bbdd4",
"short_id": "78d6b913",
"trailers": [],
"created_at": "2026-05-26T23:20:09.000+00:00",
"parent_ids": [
"750c5bfc69ce89f409bc2522a84e8cb875722f22"
],
"author_name": "GitLab Release Tools Bot",
"author_email": "[email protected]",
"authored_date": "2026-05-26T23:20:09.000+00:00",
"committed_date": "2026-05-26T23:20:09.000+00:00",
"committer_name": "GitLab",
"committer_email": "[email protected]",
"extended_trailers": []
},
"target": "83b550382957f862c63ecb06fb3e5654b718439c",
"message": "Version v18.11.4-ee",
"release": null,
"protected": true,
"created_at": "2026-05-26T23:23:18.000Z"
},
{
"name": "v19.0.1-ee",
"commit": {
"id": "52e5d1bf910581db3fb89abd1b1e7bda2b711453",
"title": "Update VERSION files",
"message": "Update VERSION files\n\n[merge-train skip]",
"web_url": "https://gitlab.com/gitlab-org/gitlab/-/commit/52e5d1bf910581db3fb89abd1b1e7bda2b711453",
"short_id": "52e5d1bf",
…