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.
Authorizations
RIALTO_API_KEYstringRequired
Query parameters
fromstring · date-timeOptional
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.
Example: 2024-12-01T09:07:54.940Z
tostring · date-timeOptional
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.
Example: 2024-12-03T10:07:54.940Z
limitinteger · int32Optional
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.
Example: 10
Responses
200
A JSON array of transactions.
application/json
400
The request is invalid.
application/json
401
Invalid API key
500
An unexpected error occurred.
get
/transactions
Get a transaction
get
/transactions/{transactionId}
Get a transaction by unique identifier.
Authorizations
RIALTO_API_KEYstringRequired
Path parameters
transactionIdstringRequired
The transaction ID
Query parameters
id_typestring · enumOptional
Defines whether the specified ID is the transaction ID of the transaction hash.