DEV Community

Gokay Buruc
Gokay Buruc

Posted on • Updated on

Pulling Github Account Data From Remote Sources

Github Official Logo

You have created hundreds of repos on Github and then you want to access information about these repository. However, you do not have any information on how to access the summary of this information. There is a solution.

You can view all your information on a single JSON file by editing the link below according to your own address.

https://api.github.com/users/<your username>/repos
Enter fullscreen mode Exit fullscreen mode

EXAMPLE

Here is my personal repo:

https://api.github.com/users/gokayburuc/repos

This link returns system records as JSON file

When you click this link you are going to see a file like this

JSON Github Summary

JSON Github Summary 2

JSON Github Summary 3

As you see above, you will get API URL's of your personal account. So you can use it anywhere on internet. Also this JSON gives of a summary of your account.

Top comments (0)