GET
/
transactions
/
search
Search transactions
curl --request GET \
  --url https://api.next.orenda.finance/transactions/search \
  --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.next.orenda.finance/transactions/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.next.orenda.finance/transactions/search"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "success": true,
  "result": {
    "total": 1,
    "data": [
      {
        "transactionId": "f5a6b7c8-4444-4e5f-9a6b-ccccddddeeee",
        "accountId": "e4f5a6b7-3333-4d4e-8f5a-bbbbccccdddd",
        "customerId": "c9f8e7d6-1111-4b2c-8d3e-444455556666",
        "direction": "OUT",
        "amount": 2599,
        "currency": "EUR",
        "status": "COMPLETED",
        "isFee": false,
        "merchantName": "Zalando",
        "merchantCountry": "DE",
        "createdDateTime": "2026-06-01T11:20:03.000Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

programId
string
required

The program to scope results to. Required unless allPrograms=true is passed. Multi-program operators are bounded to their entitled programs.

customerId
string

Filter by customer ID. Comma-separated for multi-select.

keyword
string

Free-text search across indexed fields.

page
integer
default:1

1-based page number. Defaults to 1.

Required range: x >= 1
limit
integer

Maximum number of items per page.

Required range: x >= 1
allPrograms
enum<string>

When true, searches across all of the operator's entitled programs instead of a single programId.

Available options:
true,
false
status
string

Filter by status. Comma-separated for multi-select.

fromDate
string<date-time>

Lower bound (inclusive) on record date, ISO 8601.

toDate
string<date-time>

Upper bound (inclusive) on record date, ISO 8601.

resultType
enum<string>
default:json

Result format. json (default) returns inline results; file returns a presigned S3 CSV URL (valid 1 hour) in place of the data array.

Available options:
json,
file
filePrefix
string

Customises the filename of the exported CSV when resultType=file.

accountId
string

Filter by account ID (provider account IDs are also accepted). Comma-separated for multi-select.

paymentId
string

Filter by payment ID. Comma-separated for multi-select.

direction
string

Filter by transaction direction (e.g. IN, OUT). Comma-separated for multi-select.

isFee
enum<string>

When true, returns only fee transactions; when false, excludes them.

Available options:
true,
false
cardId
string

Filter by card ID. Comma-separated for multi-select.

merchantId
string

Filter by merchant ID. Comma-separated for multi-select.

merchantName
string

Filter by merchant name. Comma-separated for multi-select.

merchantCountry
string

Filter by merchant country. Comma-separated for multi-select.

reportFormat
string

Selects an alternate CSV column layout for resultType=file exports.

Response

Matching transactions, or a presigned export URL when resultType=file.

Inline JSON results, or — when resultType=file — a presigned CSV export URL.

success
boolean
Example:

true

result
object