If the number of results for a given query exceeds the limit, the results will be paginated. Links to the previous and next pages will be returned in the metadata of the list object. The next page of results is indicated using a link with a nextCursor parameter, while any page after the first will also show a link to the previous paginated set of results using a prevCursor parameter.

"metadata": {
    "pagination": {
        "links": {
            "next": "https://api.orderful.com/v3/transactions?nextCursor=Mjk3NDk%3D",
            "prev": "https://api.orderful.com/v3/transactions?prevCursor=MzE0MzI%3D"
        }
    }
}