pagination object in the request body.
Paginated responses include page metadata when the endpoint supports total counts.
/transactions, /transactions/count, and /transactions/summary.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use pagination objects for Finup list endpoints.
pagination object in the request body.
{
"pagination": {
"page": 1,
"per_page": 25,
"sort_by": "created_at",
"sort_direction": "desc"
}
}
| Field | Type | Description |
|---|---|---|
page | number | Page number, starting at 1. |
per_page | number | Number of records to return. |
sort_by | string | Optional sort field supported by the endpoint. |
sort_direction | string | asc or desc. |
{
"result": {
"current_page": 1,
"total_records": 125,
"total_pages": 5,
"data": []
}
}
/transactions, /transactions/count, and /transactions/summary.