/v1/project/issues
Issues
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/gitlab-api/v1/project/issues" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gitlab-api/v1/project/issues", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gitlab-api/v1/project/issues");
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/issues",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": [
{
"id": 191603917,
"iid": 601852,
"epic": {
"id": 3852880,
"iid": 19972,
"url": "/groups/gitlab-org/-/epics/19972",
"title": "OAuth for Protocells - Production",
"group_id": 9970
},
"type": "ISSUE",
"state": "opened",
"title": "Sandbox: Run basic E2E tests for IAM auth flows using gitlab-qa",
"_links": {
"self": "https://gitlab.com/api/v4/projects/278964/issues/601852",
"notes": "https://gitlab.com/api/v4/projects/278964/issues/601852/notes",
"project": "https://gitlab.com/api/v4/projects/278964",
"award_emoji": "https://gitlab.com/api/v4/projects/278964/issues/601852/award_emoji",
"closed_as_duplicate_of": null
},
"author": {
"id": 28243218,
"name": "Daniele Bracciani",
"state": "active",
"locked": false,
"web_url": "https://gitlab.com/daniele-gitlab",
"username": "daniele-gitlab",
"avatar_url": "https://gitlab.com/uploads/-/system/user/avatar/28243218/avatar.png",
"public_email": ""
},
"labels": [
"Deliverable",
"devops::software supply chain security",
"group::authentication",
"iam-protocell",
"section::sec",
"type::maintenance"
],
"weight": null,
"upvotes": 0,
"web_url": "https://gitlab.com/gitlab-org/gitlab/-/work_items/601852",
"assignee": null,
"due_date": null,
"epic_iid": 19972,
"imported": false,
"severity": "UNKNOWN",
"assignees": [],
"closed_at": null,
"closed_by": null,
"downvotes": 0,
"has_tasks": true,
"iteration": null,
"milestone": null,
"created_at": "2026-06-02T16:42:35.863Z",
"issue_type": "issue",
"project_id": 278964,
"references": {
"full": "gitlab-org/gitlab#601852",
"short": "#601852",
"relative": "#601852"
},
"start_date": null,
"time_stats": {
"time_estimate": 0,
"total_time_spent": 0,
"human_time_estimate": null,
"human_total_time_spent": null
},
"updated_at": "2026-06-02T16:45:44.181Z",
"description": "\n\n## Problem\n\nAs IAM service components are deployed to the GATE sandbox, we have no automated\nend-to-end validation of the core auth flows through the full stack\n(client → Envoy → IAM → GitLab Rails). Issues can go undetected until they reach\nstaging or p
…