The endpoint follows the standard cursor-based pagination contract used across the Embedded Banking REST API.Documentation Index
Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Default | Notes |
|---|---|---|
limit | 25 | Maximum page size is 100. |
pagination_token | null | Opaque token from the previous response’s nextPaginationToken. |
Sweep loop
To read an account’s full ledger:- Make the first request with the desired
limitand any filters. - If the response includes a non-null
nextPaginationToken, pass it aspagination_tokenon the next request — without changinglimitor filters. - Stop when
nextPaginationTokenisnull. That is the only valid stop condition.
limit even when more pages exist. Drive the loop off nextPaginationToken alone.