I want to extract some data for analyses from travis-ci.com api. As first step i need list of all builds for specific repository for last 30 days. Ive used travis-ci.com api.
curl https://api.travis-ci.com/repos/wixplosives/pleb/builds?after_number=293062563 -H "Authorization: token MYTOKENGOESHERE" -H "User-Agen: Core3Client/1.0.0" -H "Accept: application/vnd.travis-ci.2.1+json" -H "Content-Type: application/json" -o travis-builds.json
But result is always same 50 latest builds. Looks like after_number parameter has not effect on result. Am i missing something?