Vai al contenuto
GET /v1/repo-issues

A repository's issues

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "repo": "forgejo/forgejo",
        "count": 20,
        "state": "open",
        "issues": [
            {
                "url": "https://codeberg.org/forgejo/forgejo/issues/13078",
                "state": "open",
                "title": "bug: 2fa code completion pops up in safari for code search box",
                "author": "BernhardBln",
                "labels": [
                    "bug/new-report",
                    "forgejo/ui"
                ],
                "number": 13078,
                "created": "2026-06-13T09:18:45+02:00",
                "updated": "2026-06-13T09:19:34+02:00",
                "comments": 0
            },
            {
                "url": "https://codeberg.org/forgejo/forgejo/issues/13069",
                "state": "open",
                "title": "bug: npm package page doesn’t show readme anymore",
                "author": "tao-cumplido",
                "labels": [
                    "bug/new-report",
                    "forgejo/ui"
                ],
                "number": 13069,
                "created": "2026-06-12T21:02:02+02:00",
                "updated": "2026-06-12T21:02:02+02:00",
                "comments": 0
            },
            {
                "url": "https://codeberg.org/forgejo/forgejo/issues/13060",
                "state": "open",
                "title": "bug: inconsistency in context between schedule actions and other triggered actions",
                "author": "YaFou",
                "labels": [
                    "bug/confirmed",
                    "code/actions"
                ],
                "number": 13060,
                "created": "2026-06-12T00:13:06+02:00",
                "updated": "2026-06-13T13:08:11+02:00",
                "comments": 1
            },
            {
                "url": "https://codeberg.org/forgejo/forgejo/issues/13058",
                "state": "open",
                "title": "inconsistent rendering of pull request references with exclamation mark `!12345` vs hash `#12345`",
                "author": "mahlzahn",
                "labels": [
                    "forgejo/ui",
                    "impact/small",
                    "problem"
                ],
                "number": 13058,
                "created": "2026-06-11T17:05:47+02:00",
                "updated": "2026-06-11T20:19:57+02:00",
                "comments": 0
            },
            {
                "url": "https://codeberg.org/forgejo/forgejo/issues/13057",
                "state": "open",
                "title": "problem: Project Management with Forgejo",
                "author": "n-khule",
                "labels": [
                    "impact/unknown",
                    "problem"
                ],
                "number": 13057,
                "created": "2026-06-11T16:04:32+02:00",
                "updated": "2026-06-11T16:06:16+02:00",
                "comments": 0
            },
            {
                "ur
…