> ## Documentation Index
> Fetch the complete documentation index at: https://fuse-docs.swovo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

> How pagination works in the Fuse API

Pagination endpoints come with a `pagination` payload. The payload contains various pieces of metadata about the resource:

* **current**: The current page
* **previous**: The previous page
* **next**: The next page
* **limit**: The maximum records per page
* **total\_pages**: The total numbers of pages
* **total\_count**: The total number of records

## Example

```
{
  "data": [
    // an array of the resource you are accessing
  ],
  "paginiation": {
    "current": 1,
    "previous": null,
    "next": 2,
    "limit": 100,
    "total_pages": 1000,
    "total_count": 10000
  }
}
```
