GitHub Shows 2.7K Followers, But the API Knows the Exact Number ๐Ÿ‘€

์ž‘์„ฑ์ž

์นดํ…Œ๊ณ ๋ฆฌ:

โ† ํ”ผ๋“œ๋กœ
DEV Community ยท Joodi ยท 2026-07-18 ๊ฐœ๋ฐœ(SW)

Joodi

While building my project GitHub Followers Tracker, I noticed something interesting about GitHub profiles.

On the GitHub website, follower counts are rounded:
2.7K followers

But the GitHub API gives you the exact number:

{
  "followers": 2743
}

Enter fullscreen mode Exit fullscreen mode

No rounding, no guessing.

Why I Built This

GitHub shows your current followers, but it doesn’t show your follower history.

You can’t easily know:
Who followed you recently
Who unfollowed you
How your network changed over time

So I built a small tool that works like a memory for your GitHub profile.

GitHub Followers Tracker

๐Ÿ”— Live Demo:
https://github-followers-tracker.netlify.app/

๐Ÿ’ป Source Code:
https://github.com/MiladJoodi/github-followers-tracker

Features:
โœ… Search any GitHub username
โœ… View followers and following lists
โœ… Track new followers
โœ… Detect unfollowed users
โœ… Save snapshots and compare changes
โœ… No login required
โœ… How It Works

GitHub provides profile data through a public API:

const response = await fetch(
  `https://api.github.com/users/${username}`
);

const profile = await response.json();

console.log(profile.followers);****

Enter fullscreen mode Exit fullscreen mode

The API returns useful information like:
{
“login”: “MiladJoodi”,
“followers”: 2743,
“following”: 1752,
“public_repos”: 136
}

Built with:
โžก๏ธ Next.js 15 App Router
โžก๏ธ React 19
โžก๏ธ TypeScript
โžก๏ธ Tailwind CSS
โžก๏ธ Radix UI
โžก๏ธ Recharts
โžก๏ธ Zod

What I Learned
Sometimes a simple API can become the foundation of a useful developer tool.

GitHub gives you the data, but with a little creativity you can build something that solves a real problem.

If you are interested in GitHub APIs or frontend projects, feel free to check it out, fork it, or share your feedback ๐Ÿš€

์›๋ฌธ์—์„œ ๊ณ„์† โ†—

์ถ”์ถœ ๋ณธ๋ฌธ ยท ์ถœ์ฒ˜: dev.to ยท https://dev.to/joodi/github-shows-27k-followers-but-the-api-knows-the-exact-number-34go

์ฝ”๋ฉ˜ํŠธ

๋‹ต๊ธ€ ๋‚จ๊ธฐ๊ธฐ

์ด๋ฉ”์ผ ์ฃผ์†Œ๋Š” ๊ณต๊ฐœ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ํ•„์ˆ˜ ํ•„๋“œ๋Š” *๋กœ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค