GET
/
v1
/
customers
/
{customerId}
/
transactions
List transactions
curl --request GET \
  --url https://api.next.orenda.finance/v1/customers/{customerId}/transactions \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.next.orenda.finance/v1/customers/{customerId}/transactions"

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

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

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.next.orenda.finance/v1/customers/{customerId}/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.next.orenda.finance/v1/customers/{customerId}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.next.orenda.finance/v1/customers/{customerId}/transactions"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.next.orenda.finance/v1/customers/{customerId}/transactions")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.next.orenda.finance/v1/customers/{customerId}/transactions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": [
    {
      "id": "txn_7d3f9a1c",
      "transactionDate": "2026-06-18T10:32:00Z",
      "amount": "150.00",
      "currency": "GBP",
      "currencySymbol": "£",
      "direction": "OUT",
      "isFee": false,
      "uniqueRef": "Invoice 1024",
      "PaymentId": "pmt_9a2b7e3f",
      "beneficiary_details": {
        "name": "Ada Lovelace",
        "identifiers": [
          {
            "accountNumber": "87654321",
            "sortCode": "040506"
          }
        ]
      },
      "Payer": {
        "AccountNumber": "12345678",
        "SortCode": "010203"
      }
    },
    {
      "id": "txn_5b1e8c2a",
      "transactionDate": "2026-06-17T09:15:00Z",
      "amount": "2500.00",
      "currency": "GBP",
      "currencySymbol": "£",
      "direction": "IN",
      "isFee": false,
      "uniqueRef": "Salary June",
      "PaymentId": "pmt_3c4d5e6f",
      "Payer": {
        "Iban": "FR7630006000011234567890189",
        "Bic": "AGRIFRPP"
      }
    }
  ],
  "total": 120,
  "page": 1,
  "limit": 10
}
{
"success": false,
"code": "<string>",
"message": "<string>"
}
Returns the customer’s transactions, newest first. Every filter accepts comma-separated values, so status=SUCCESS,PENDING or currency=GBP,EUR work as multi-selects. Common patterns:
  • Account activity feed — filter by accountId, page with page + limit.
  • Money in vs outdirection=IN or direction=OUT.
  • A date rangestartDate and endDate (ISO dates, inclusive).
  • Hide feesisFee=false.

Authorizations

Authorization
string
header
required

The user's access token.

Path Parameters

customerId
string
required

The customer's ID.

Query Parameters

accountId
string

Filter by account ID(s).

direction
enum<string>

Money in or out.

Available options:
IN,
OUT
status
string

SUCCESS, FAILURE, or PENDING (comma-separated for several).

currency
string
paymentType
string
reference
string

Filter by payment reference.

payeeName
string
payerName
string
isFee
boolean

Only fee (or only non-fee) transactions.

startDate
string<date>

ISO date, e.g. 2026-01-01.

endDate
string<date>
page
integer
default:1
limit
integer
default:10
sortBy
string
default:dateTime
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

Transactions

success
boolean
Example:

true

data
object[]
total
integer
Example:

120

page
integer
Example:

1

limit
integer
Example:

10