API v1.0 Docs

Pagination

Requests that return a collection will be paginated to 15 items by default. You can specify further pages with the page parameter. You can also set a custom page size up to 30 with the limit parameter.

GET /files?page=2&limit=20

Response Body

The response body will contain some useful data related to the paginated collection.

{
    "items": [
        ...
    ],
    "meta": {
        "pagination": {
            "total": 44,
            "count": 1,
            "per_page": 1,
            "current_page": 1,
            "total_pages": 44,
            "links": {
                "next": "https://api.up2sha.re/files?page=2&limit=20"
            }
        }
    }
}