~ / Services / GitHub Repo Stargazers

GitHub Repo Stargazers

Enter a GitHub repository to find stargazers and their email addresses.

API

You can also query the API directly. It returns JSON.

# Find stargazers for a GitHub repo (paginated, 100 per page)
curl "/api/stargazers?repo=torvalds/linux&page=1"

Response:

{
  "repo": "torvalds/linux",
  "page": 1,
  "stargazers": [
    { "username": "someuser" }
  ],
  "has_more": true
}