GitHub Contribution Chart Generator

Fetch anyone's GitHub contribution totals as JSON by year

📚 Open DataHEALTHYchecked 7h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Behind the contribution-chart image generator sits a JSON endpoint that returns a GitHub user's yearly contribution totals and date ranges. Pass a username and get an array of years with totals — handy for building your own visualizations. It scrapes live, so responses can be slow and don't include CORS headers.

68HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 68 · healthy
Uptime history
79.4%90 days
85.0%30 days
4374P50 · ms
4992P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 2320 ms, slowest 4830 ms, most recent 4314 ms.
Live response samplecaptured by our last successful check
GET https://github-contributions.vercel.app/api/v1/sallar

{
  "years": [
    {
      "year": "2026",
      "total": 1022,
      "range": {
        "start": "2026-01-04",
        "end": "2026-12-26"
      }
    },
    {
      "year": "2025",
      "total": 2503,
      "range": {
        "start": "2025-01-05",
        "end": "2025-12-27"
      }
    }
  ]
}
Call itcurl · fetch · python
curl "https://github-contributions.vercel.app/api/v1/sallar"
const res = await fetch("https://github-contributions.vercel.app/api/v1/sallar");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://github-contributions.vercel.app/api/v1/sallar")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 2HealthyFULL DOCS ↗
Monitored path responding — GET /sallar4374 mschecked 7h ago
GET/sallarPROBED

Fetch anyone's GitHub contribution totals as JSON by year

GET/sallar?limit=5

Paginated variant with limit parameter.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

GitHub Contribution Chart Generator: common questions

Is GitHub Contribution Chart Generator free to use?

Yes — GitHub Contribution Chart Generator is a free open data API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.

Does GitHub Contribution Chart Generator need an API key?

No — GitHub Contribution Chart Generator needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call GitHub Contribution Chart Generator from the browser?

Not directly — GitHub Contribution Chart Generator doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is GitHub Contribution Chart Generator up right now?

As of our last scheduled check, GitHub Contribution Chart Generator is healthy with 79.4% uptime over 90 days and a 4374 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.