curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests"
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}/accounts/{accountId}/payments/requests', 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}/accounts/{accountId}/payments/requests",
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}/accounts/{accountId}/payments/requests"
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}/accounts/{accountId}/payments/requests")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests")
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": "p_111222333",
"accountId": "acc_7c1d8e4a",
"customerId": "cust_3f9a2b7e",
"status": "PENDING",
"type": "CUSTOMER",
"amount": 150,
"currency": "GBP",
"paymentRef": "Invoice 1024",
"isDirectDebit": false,
"createdDateTime": "2026-06-18T10:32:00Z",
"payee": {
"name": "Ada Lovelace",
"accountNumber": "87654321",
"sortCode": "040506",
"beneficiaryId": "ben_4b8e1c9d"
},
"statusHistory": [
{
"dateTime": "2026-06-18T10:32:00Z",
"status": "PENDING"
}
]
},
{
"id": "p_dd_445566",
"accountId": "acc_7c1d8e4a",
"customerId": "cust_3f9a2b7e",
"status": "INITIATED",
"type": "CUSTOMER",
"amount": 42.5,
"currency": "EUR",
"paymentRef": "SEPA DD collection",
"isDirectDebit": true,
"createdDateTime": "2026-06-17T09:00:00Z",
"statusHistory": [
{
"dateTime": "2026-06-17T09:00:00Z",
"status": "INITIATED"
}
]
}
],
"total": 4,
"page": 1,
"limit": 10
}{
"success": false,
"code": "<string>",
"message": "<string>"
}List payment requests
Returns the account’s payment requests — the in-flight state of each initiated payment before it becomes a transaction. Without a status filter, returns PENDING, PENDING_TM, INITIATED, and PENDING_CANCELLATION (direct debit upcoming / in-cancel). Each row includes isDirectDebit. Optional isDirectDebit=true|false filters SEPA DD COLLECT rows. Other filters accept comma-separated values.
curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests"
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}/accounts/{accountId}/payments/requests', 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}/accounts/{accountId}/payments/requests",
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}/accounts/{accountId}/payments/requests"
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}/accounts/{accountId}/payments/requests")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/customers/{customerId}/accounts/{accountId}/payments/requests")
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": "p_111222333",
"accountId": "acc_7c1d8e4a",
"customerId": "cust_3f9a2b7e",
"status": "PENDING",
"type": "CUSTOMER",
"amount": 150,
"currency": "GBP",
"paymentRef": "Invoice 1024",
"isDirectDebit": false,
"createdDateTime": "2026-06-18T10:32:00Z",
"payee": {
"name": "Ada Lovelace",
"accountNumber": "87654321",
"sortCode": "040506",
"beneficiaryId": "ben_4b8e1c9d"
},
"statusHistory": [
{
"dateTime": "2026-06-18T10:32:00Z",
"status": "PENDING"
}
]
},
{
"id": "p_dd_445566",
"accountId": "acc_7c1d8e4a",
"customerId": "cust_3f9a2b7e",
"status": "INITIATED",
"type": "CUSTOMER",
"amount": 42.5,
"currency": "EUR",
"paymentRef": "SEPA DD collection",
"isDirectDebit": true,
"createdDateTime": "2026-06-17T09:00:00Z",
"statusHistory": [
{
"dateTime": "2026-06-17T09:00:00Z",
"status": "INITIATED"
}
]
}
],
"total": 4,
"page": 1,
"limit": 10
}{
"success": false,
"code": "<string>",
"message": "<string>"
}Authorizations
The user's id_token from authentication — the ID token, not the access_token. The program and environment come from the token.
Path Parameters
Customer identifier.
Account identifier. The account determines which optional features and limits apply.
Query Parameters
PENDING, PENDING_TM, INITIATED, PENDING_CANCELLATION, COMPLETED, FAILED (comma-separated). Default: PENDING,PENDING_TM,INITIATED,PENDING_CANCELLATION.
CUSTOMER, BATCH, CARD (comma-separated). Default: all three.
Filter SEPA direct debit COLLECT rows. true = only direct debits; false = exclude direct debits (also matches rows that never stamped the flag).
asc, desc