The transactions are sorted by creation date, in descending order. The most recently created transactions appear first. The transactions can be filtered by date using the from
and to
parameters. If the from
and to
parameters are not provided, the transactions are fetched from the beginning until now. The transactions can be paginated using the limit
parameter. If there are more transactions to fetch with the provided parameters, the response will contain a hasNextPage
field set to true
. In order to fetch the next page, the to
parameter must be set to the createdAt
field of the last transaction of the current page.
The date from which the transactions are fetched. The comparison is made using the createdAt
field of the transactions. The comparison is inclusive, meaning that the transactions created at the provided date are included in the result. The value is in ISO 8601 format. If the value is not provided, the transactions are fetched from the beginning.
2024-12-01T09:07:54.940Z
The date to which the transactions are fetched. The comparison is made using the createdAt
field of the transactions. The comparison is exlusive, meaning that the transactions created at the provided date are not included in the result. The value is in ISO 8601 format. If the value is not provided, the transactions are fetched until now.
2024-12-03T10:07:54.940Z
The maximum number of transactions to fetch. The value must be a positive integer. If the value is not provided, the default value is 10. The maximum value is 100.
10