Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitHub - Show user's starred repos

Tags:

github

I know that there is an API endpoint of repos that are starred by a particular user...

Is there an app endpoint that lists all starred repos by a user?

I've tried:

  • http://github.com/ddavison/starred
  • http://github.com/users/ddavison/starred

to no avail.. i've run out of ideas. Is there an app endpoint that shows repos that a user has starred?

like image 842
ddavison Avatar asked Jul 14 '14 21:07

ddavison


People also ask

Can you see who starred a repo?

You can view everyone who has starred a public repository or a private repository you have access to.

How do I view stars in GitHub?

To view everyone who has starred a repository, add /stargazers to the end of the URL of a repository. For example, to view stargazers for the github/docs repository, visit https://github.com/github/docs/stargazers.

Can you see who viewed your repositories on GitHub?

If your project is hosted on GitHub, you can view how many people land on your project and where they come from. From your project's page, click “Insights”, then “Traffic”. On this page, you can see: Total page views: Tells you how many times your project was viewed.

How do I see watched repositories on GitHub?

In the left sidebar, under the list of repositories, use the "Manage notifications" drop-down menu and click Watched repositories. Evaluate the repositories that you are watching and decide if their updates are still relevant and helpful.


2 Answers

The URL I was looking for was this format:

https://github.com/stars/<user>
like image 96
ddavison Avatar answered Sep 28 '22 07:09

ddavison


This should do the trick!

Query the GitHub api with the below URL. This is equivalent to an HTTP GET

https://api.github.com/users/ddavison/starred

like image 28
Noah Presler Avatar answered Sep 28 '22 07:09

Noah Presler