Get a clean overview of any public GitHub account — account age, repositories, followers, socials and more.
Checking GitHub account...
GitHub profile picture
Account age
Joined
Public repositories
Public gists
Followers
Following
Location
Company
Account type
Last updated
Socials & Links
Public repositories

Use GitChecker on your website

You can use the public GitChecker API to retrieve GitHub account information from your own website.

Endpoint:

GET https://YOUR-API-DOMAIN/user/{username}

Example:

fetch("https://YOUR-API-DOMAIN/user/octocat")
  .then(response => response.json())
  .then(user => {
    console.log(user.account_age_days);
    console.log(user.followers);
  });