~ / Services / GitHub Repo Contributors

GitHub Repo Contributors

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

API

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

# Find contributors for a GitHub repo
curl "/api/contributors?repo=torvalds/linux"

Response:

{
  "repo": "torvalds/linux",
  "contributors": [
    { "name": "Linus Torvalds", "email": "torvalds@linux-foundation.org" }
  ]
}