GET /v1/signatures and GET /v1/teammates, return results one page at a time using page-based pagination. Results are ordered newest first.
Query parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | The 1-based page number to fetch. Defaults to 1. |
limit | integer | Page size. Defaults to 50. Maximum 100. |
The pagination object
Every list response includes apagination object alongside the data array:
| Field | Description |
|---|---|
page | The page number returned in this response. |
limit | The page size applied to this response. |
total_count | Total number of records across all pages. |
total_pages | Total number of pages at this limit. |
has_more | true when more pages are available (page is less than total_pages). |
Fetch every page
Request page 1, then incrementpage until has_more is false: