List endpoints use cursor-based pagination. Results are returned in stable order, and you page through them using a cursor rather than an offset.Documentation Index
Fetch the complete documentation index at: https://www.finta.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Response structure
Every paginated response includes these fields:| Field | Type | Description |
|---|---|---|
object | string | Always "list" |
url | string | The canonical path of the collection, relative to the API host (e.g. /api/v1/transactions). Always present, never null, and does not include a query string |
has_more | boolean | true if more results exist beyond this page |
next_cursor | string | The cursor to pass as starting_after for the next page. Only present when has_more is true |
data | array | The array of results |
Parameters
Number of results per page. Minimum 1, maximum 500.
A cursor for pagination. Pass the
next_cursor value from the previous response to fetch the next page.Paginated endpoints
GET /categories is also a list endpoint, but it returns the full set in a single response and does not accept limit or starting_after.
Example
Fetch the first page of transactions:has_more is true, use next_cursor to get the next page: