1. Developer
  2. Developer Stats
GET

/v1/developer/stats

x-invezo-api-key*
curl --request GET \
     --url https://api.invezo.com/v1/developer/stats \
     --header 'x-invezo-api-key: AUTH_VALUE'

Query Parameters

symbolsRequired
string

comma separated list of asset symbols (example: btc,eth)

{
    "status": "OK",
    "request_id": "",
    "result_count": 5000,
    "data": [
        {
            "symbol": "ETH",
            "githubCommits": 13526,
            "githubForks": 13491,
            "githubIssues": 14193,
            "githubActiveIssues": 247,
            "githubStars": 38548,
            "githubWatchers": 2168
        },
        {
            "symbol": "BTC",
            "githubCommits": 34854,
            "githubForks": 23770,
            "githubIssues": 24771,
            "githubActiveIssues": 598,
            "githubStars": 65442,
            "githubWatchers": 3921
        },
        ...
    ]
}