Transactions

Retrieve a List of Transactions

Allows to query list of transactions for desired SEP. This api supports pagination, and it's possible (and recommended) to make multiple requests to query transactions. The last page is reached when the number of elements returned by the endpoint is smaller than provided page_size.

get/transactions

Query parameters

sep'6' | '24' | '31' required

Lookup transactions belonging to this SEP.

order_by'created_at' | 'transfer_received_at' | 'user_action_required_by'

Specifies field that transactions will be ordered by. Note, that secondary sort is transaction id in ascending value. I.e. when timestamps for 2 or more transactions is identical, they will be sorted by id.

order'asc' | 'desc'

Specifies order. Note, that when the field is null, all transactions with null value will be last, regardless of soring order (NULLS LAST). For example, transfer time may not be specified for some transactions, resulting into transfer_received_at being null. If so, transactions with non-null values will be sorted and returned first, followed by all transactions with null timestamps.

statusesStatusSEPAll[] — unresolved $ref

Filters transactions for specified array of statuses. If not provided, filtering is disabled (default behavior)

page_sizeinteger

Size of a single search page. Must be positive.

page_numberinteger

Page number to use for continuous search. Page count beings at 0.

Response

Transaction found.

TransactionListSEP6 required— unresolved $ref
OR
TransactionListSEP24 required— unresolved $ref
OR
TransactionListSEP31 required— unresolved $ref

Changes