All top-level API resources support listing, i.e. fetching records in bulk.
Since there is an upper limit of 100 results returned per query, pagination is needed for larger collections.
Skovik uses cursor-based pagination, via the parameters starting_after and ending_before.
The value of either parameter is the ID of an object in the list,
indicating the starting or ending position in the list used when returning results.
API results are sorted by creation time unless documented otherwise.
An example
In a returned list of 100 objects and the last object has id: '550f24770640fd543c000001'.
To grab the next page add starting_after=550f24770640fd543c000001 as a query parameter.
