https://api.github.com/users/ethanboxx/repos
Gives 30 results but I have 50 repositories on that github page. Is there a url I could use to get all 50 of them in json form?
https://api.github.com/users/ethanboxx/repos
Gives 30 results but I have 50 repositories on that github page. Is there a url I could use to get all 50 of them in json form?
Using the below url you can get 50 data set.
https://api.github.com/users/ethanboxx/repos?per_page=50
GitHub has pagination and by default, the result set is 30 only. Either you can traverse through pages or increase the per_page parameter.
https://developer.github.com/v3/#pagination
Regards
Parithiban