| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
English | 简体中文
A simple API service for retrieving GitHub user achievements information. Built with Cloudflare Workers.
GET https://<your-worker>.workers.dev/<github_username>GET https://<your-worker>.workers.dev/wangrunlin{
"total": {
"raw": 5, // Raw achievement count (without tiers)
"weighted": 8 // Weighted achievement count (with tiers)
},
"achievements": [
{
"type": "pair-extraordinaire",
"tier": 3,
"image": "https://some.cdn.com/path/to/pair-extraordinaire.png"
},
{
"type": "pull-shark",
"tier": 2,
"image": "https://some.cdn.com/path/to/pull-shark.png"
},
{
"type": "quickdraw",
"tier": 1,
"image": "https://some.cdn.com/path/to/quickdraw.png"
}
// ...
]
}This API inherits GitHub's rate limiting. Please be mindful of GitHub's rate limits when making requests.
| Status Code | Description |
|---|---|
| 404 | User not found |
| 429 | Rate limit exceeded |
| 500 | Internal server error |
Example error response:
{
"error": "Failed to fetch GitHub achievements: Not Found"
}Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
Are you using this API? Let us know and we'll add your logo here!
pnpm installpnpm devpnpm testpnpm dlx wrangler loginpnpm deployMIT
Issues and Pull Requests are welcome!
Here are all the achievements currently available on GitHub:
View more details about GitHub Achievements
Thanks to these awesome projects and resources:
| Back | FazBrowse Home | New Git URL |