Resources that return variable length of data will be paginated. Page and number of entries are stated in the meta
as seen below.
{
"meta": {
"status": 200,
"limit": 20,
"page": 1
}
}
To request more pages please append the query param page
like this:
GET /api/gh/:owner/:repo/commits?page=2
You can also limit the number of entries like this:
GET /api/gh/:owner/:repo/pulls?limit=1