Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github Dashboard-Feed via API or RSS?

When loading the github.com page, I see a dashboard feed showing a list of "pushed" / "starred" updates for all of my followed repos.

When checking the Network tab on Chrome, I can see that this feed comes from this endpoint:

https://github.com/dashboard-feed

How do I get this data via the GitHub API? Is it also available via RSS?

Thanks

like image 517
vgoklani Avatar asked Jul 02 '26 15:07

vgoklani


1 Answers

Inspired by Rahul's reply which is very close, I did some googling and found this article on how to build a python crawler for Github's API which mentioned this recent events endpoint...

https://api.github.com/users/headwinds/received_events

...which lists the star events in order and you could use that rebuild a dashboard replacing the username.

like image 130
headwinds Avatar answered Jul 04 '26 11:07

headwinds