Zum Inhalt springen
GET /v1/developer

A coin GitHub developer activity

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "id": "bitcoin",
        "name": "Bitcoin",
        "repos": [
            "https://github.com/bitcoin/bitcoin",
            "https://github.com/bitcoin/bips"
        ],
        "github_forks": 36426,
        "github_stars": 73168,
        "total_issues": 7743,
        "closed_issues": 7380,
        "commits_4_weeks": 108,
        "github_subscribers": 3967,
        "pull_requests_merged": 11215,
        "code_additions_4_weeks": 1570,
        "code_deletions_4_weeks": -1948,
        "pull_request_contributors": 846
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:42.859Z",
        "request_id": "da8c3b3c-e60b-41aa-9c98-735aaaac8030"
    },
    "status": "ok",
    "message": "Developer data retrieved successfully",
    "success": true
}