Aktive is a simple web service. It returns a badge (or JSON) that shows your rank among other GitHub users from your country according to your GitHub contributions.
Note
Aktive depends on the data provided by ashkulz/committers.top.
So please make sure that your name appears on your country list here committers.top.
Note
You can also check the Swagger API documentation for more details.
Base URL: https://aktive.kerolloz.dev
Redirects to this repository.
- Returns a shields.io badge (SVG image) with your rank.
country
- The country you live in (make sure it's visible on your profile).username
- Your GitHub username.
style
- Set the style of the badge. Can be one offlat
,flat-square
,for-the-badge
, orplastic
. Defaults toflat
.label
- Set the left-hand-side text. Defaults toMost Active GitHub User Rank
.color
- Set the background of the right part (hex, rgb, rgba, hsl, hsla and css named colors supported). Defaults tobrightgreen
.labelColor
- Set the background of the left part (hex, rgb, rgba, hsl, hsla and css named colors supported). Defaults togrey
.rnkPrefix
- Set prefix to display before the rank value. Defaults to""
empty string.rnkSuffix
- Set suffix to display after the rank value. Defaults to""
empty string.
![badge](https://aktive.kerolloz.dev/egypt/kerolloz?style=flat-square&color=blue)
![badge](https://aktive.kerolloz.dev/egypt/kerolloz?label=Most%20Active%20GitHub%20User%20In%20Egypt&labelColor=white&rnkPrefix=Rank%20)
![badge](https://aktive.kerolloz.dev/egypt/kerolloz?label=&color=cyan&style=for-the-badge&rnkPrefix=Ranked%20&rnkSuffix=%20In%20Egypt)
- Returns a JSON object with your rank.
Same parameters as GET /:country/:username
$ curl https://aktive.kerolloz.dev/rank/egypt/kerolloz
{
"rank": "108th"
}