Zum Inhalt springen
GET /v1/search/issues

Search issues & PRs

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/github-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "items": [
            {
                "id": 4538680954,
                "url": "https://api.github.com/repos/whhzzdy/bird-faith/issues/1",
                "body": "File: `React/run_react.py`\nhttps://github.com/whhzzdy/bird-faith/blob/HEAD/React/run_react.py",
                "user": {
                    "id": 10137,
                    "url": "https://api.github.com/users/ghost",
                    "type": "User",
                    "login": "ghost",
                    "node_id": "MDQ6VXNlcjEwMTM3",
                    "html_url": "https://github.com/ghost",
                    "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}",
                    "repos_url": "https://api.github.com/users/ghost/repos",
                    "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4",
                    "events_url": "https://api.github.com/users/ghost/events{/privacy}",
                    "site_admin": false,
                    "gravatar_id": "",
                    "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}",
                    "followers_url": "https://api.github.com/users/ghost/followers",
                    "following_url": "https://api.github.com/users/ghost/following{/other_user}",
                    "user_view_type": "public",
                    "organizations_url": "https://api.github.com/users/ghost/orgs",
                    "subscriptions_url": "https://api.github.com/users/ghost/subscriptions",
                    "received_events_url": "https://api.github.com/users/ghost/received_events"
                },
                "score": 1,
                "state": "open",
                "title": "React/run_react.py",
                "labels": [],
                "locked": false,
                "number": 1,
                "node_id": "I_kwDOSqFke88AAAABDobGeg",
                "assignee": null,
                "comments": 0,
                "html_url": "https://github.com/whhzzdy/bird-faith/issues/1",
                "assignees": [],
                "closed_at": null,
                "milestone": null,
                "reactions": {
                    "+1": 0,
                    "-1": 0,
                    "url": "https://api.github.com/repos/whhzzdy/bird-faith/issues/1/reactions",
                    "eyes": 0,
                    "heart": 0,
                    "laugh": 0,
                    "hooray": 0,
                    "rocket": 0,
                    "confused": 0,
                    "total_count": 0
                },
                "created_at": "2026-05-28T07:48:31Z",
                "events_url": "https://api.github.com/repos/whhzzdy/bird-faith/issues/1/events",
                "labels_url": "https://api.github.com/repos/whhzzdy/bird-faith/issues/1/labels{/name}",
                "updated_at": "2026-05-28T07:48:31Z",
                "comments_url": "https://api.github.com/repos/whhzzdy/bird-faith/issues/1/comments",
               
…