Developer
Developer Stats
The most recent developer stats for a given asset.
GET
/v1/developer/stats
x-invezo-api-key*
curl --request GET \
--url https://api.invezo.com/v1/developer/stats \
--header 'x-invezo-api-key: <x-invezo-api-key>'
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
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/developer/stats \
--header 'x-invezo-api-key: <x-invezo-api-key>'
{
"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
},
...
]
}