Skip to main content
GET
Get transactions list
This endpoint is deprecated. Use Get transactions list instead.

Migrate to v3

GET /v3/payments replaces the snake_case request fields with camelCase names. For example, use nextPageToken instead of next_page_token, id instead of transaction_id, and statusIds instead of statuses[]. The v3 response returns compact payment summaries in data and cursor metadata in meta. Update integrations that read the v2 result array or its legacy transaction fields before switching endpoints.

Query Parameters

limit
integer<int32>

A limit on the number of objects to be returned. Default is 10 items.

Required range: 1 <= x <= 100
next_page_token
string

A pagination token for fetching the next page of results.

previous_page_token
string

A pagination token for fetching the previous page of results.

transaction_id
integer<int64>

A filter by transaction ID.

debtor_bank_code
string

A filter by debtor bank code.

creditor_bank_code
string

A filter by creditor bank code.

datetime_from
string<date-time>

A filter by transaction datetime from (ISO-8601 format: 2020-01-01T12:00:00Z).

datetime_to
string<date-time>

A filter by transaction datetime from (ISO-8601 format: 2020-01-01T12:00:00Z).

settlement_date_from
string<date>

A filter by settlement date from or equal (ISO-8601 format: 2020-01-01).

settlement_date_to
string<date>

A filter by settlement date to or equal (ISO-8601 format: 2020-01-01).

end_to_end_id
string

A filter by endToEnd ID.

uetr
string<uuid>

A filter by UETR.

metadata
string

An exact-match filter by client-defined metadata value.

method
enum<string>[]

A filter by transaction method. Multiple values are supported e.g. schema=SEPA&schema=INST

Available options:
SEPA,
INST,
SDD,
SWIFT,
T2
direction
enum<string>

A filter by direction of transactions.

Available options:
OUTBOUND,
INBOUND
parent_trx_id
integer<int64>

A filter by Parent Transaction ID.

type_id
integer<int32>

A filter by transaction Type ID. List of available Type IDs can be retrieved via /getTransactionTypes

currency
string

Currency (ISO 4217). When provided, results are filtered to this currency AND the amount filters below (amount_from/to, unaccounted_tax_amount_from/to, compensation_amount_from/to) are interpreted as minor units of this currency. When omitted, results are not filtered by currency and amount filters are interpreted as EUR minor units.

amount_from
integer

A filter by amount (minor currency units of currency, default EUR) from or equal.

amount_to
integer

A filter by amount (minor currency units of currency, default EUR) to or equal.

unaccounted_tax_amount_from
integer

A filter by unaccounted tax amount (minor currency units of currency, default EUR) from or equal.

unaccounted_tax_amount_to
integer

A filter by unaccounted tax amount (minor currency units of currency, default EUR) to or equal.

compensation_amount_from
integer

A filter by compensation amount (minor currency units of currency, default EUR) from or equal.

compensation_amount_to
integer

A filter by compensation amount (minor currency units of currency, default EUR) to or equal.

debtor_account
string

A filter by debtor account.

creditor_account
string

A filter by creditor account.

trx_id_or_parent_trx_id
integer<int64>
excludePaymentReturns
boolean
statuses[]
integer<int32>[]

A filter by transaction Status ID. List of available Status IDs can be retrieved via /getTransactionStatuses

A filter by transaction Status ID. List of available Status IDs can be retrieved via /getTransactionStatuses

Response

Returned payments list

meta
object
required

Result metadata.

result
object[]
required

List of found transactions for provided filters.

Last modified on August 19, 2026