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>"
}Transactions
List transactions
Returns the customer’s transactions, newest first. Filter with the query parameters; all filters accept comma-separated values for multi-select.
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>"
}Authorizations
The user's access token.
Path Parameters
The customer's ID.
Query Parameters
Filter by account ID(s).
Money in or out.
Available options:
IN, OUT SUCCESS, FAILURE, or PENDING (comma-separated for several).
Filter by payment reference.
Only fee (or only non-fee) transactions.
ISO date, e.g. 2026-01-01.
Available options:
asc, desc ⌘I