Documentation Index
Fetch the complete documentation index at: https://docs.simplifi.work/llms.txt
Use this file to discover all available pages before exploring further.
The Simplifi API is in Developer Preview. While not all features are finalised, we encourage you to explore and share your feedback — including thoughts on endpoint design, response structure, or areas where documentation could be clearer.
Overview
Endpoints that return lists of records are paginated. Rather than returning every matching record in a single response, the API breaks results into pages and provides links to navigate between them.Default Page Size
The default page size is 200 records. If you do not specify apageSize, each response will contain up to 200 records.
Query Parameters
Control pagination using the following query string parameters:| Parameter | Type | Default | Description |
|---|---|---|---|
page | Integer | 1 | The page number to retrieve. Starts at 1. |
pageSize | Integer | 200 | The number of records to return per page. |
Example Request
javascript
Pagination Response Object
Paginated endpoints return apagination object alongside the data array:
javascript
| Field | Type | Description |
|---|---|---|
page | Integer | The current page number. |
pageSize | Integer | The number of records per page used for this response. |
totalRecords | Integer | The total number of records matching your request. |
totalPages | Integer | The total number of pages available. |
nextPage | String | The full URL for the next page, or omitted if on last page. |
previousPage | String | The full URL for the previous page, or omitted if on page 1. |
Navigating Pages
ThenextPage and previousPage fields contain ready-to-use URLs that preserve all your existing query parameters (such as date filters). The only change between them is the page value.
To retrieve all records, keep requesting the nextPage URL until it is no longer present in the response.
javascript
Notes
- Page numbers start at 1. Requesting
page=0is treated aspage=1. - If
pageSizeis not supplied or is0, the default of 200 is used. - Filters such as
dateFromanddateToare applied before pagination, sototalRecordsreflects your filtered result set. - The
nextPageandpreviousPageURLs are absolute and include your instance’s base URL.

.png?fit=max&auto=format&n=fTXEPIUfjW4rC1Pi&q=85&s=85d7b852879d29ad2bde9b743307ab0e)