The maximum number of elements per page is 100, so using the per_page=100 querystring parameter, the result will be increased by 100 users per page:
https://api.github.com/users/vojtajina/followers?per_page=100
Using the page querystring parameter, you can control pagination. For example, to get a second page, you would add page=2 :
https://api.github.com/users/vojtajina/followers?per_page=100&page=2
If you want to get all the followers, you have to iterate over the pages until you get an empty array.
If you want to use this in a Node.js / JavaScript application (on client), you can use gh.js - the library I created that handles this:
var GitHub = require("gh.js"); var gh = new GitHub({ token: "an optional token" }); gh.get("users/vojtajina/followers", { all: true } function (err, followers) { console.log(err || followers);
source share