/v1/developer
A coin GitHub developer activity
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}