Skip to content
GET /v1/developer

A coin GitHub developer activity

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/coinprofile-api

It works. Grab an API key and use it in your project.

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}