Is there a way to get access to the data in the “Repositories contributed to” module on GitHub profile pages via the GitHub API? Ideally the entire list, not just the top fi
You can use Search provided by GitHub API. Your query should look something like this:
https://api.github.com/search/repositories?q=%20+fork:true+user:username
fork parameter set to true ensures that you query all user's repos, forked included.
However, if you want to make sure the user not only forked repository, but contributed to it, you should iterate through every repo you got with 'search' request and check if user is within them. Which quite sucks, because github returns only 100 contributors and there is no solution for that...