GET
/
v1
/
customers
/
{customerId}
/
accounts
/
{accountId}
/
payments
/
requests
List payment requests
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",
      "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"
        }
      ]
    }
  ],
  "total": 4,
  "page": 1,
  "limit": 10
}
{
"success": false,
"code": "<string>",
"message": "<string>"
}
A payment request is the in-flight record of a payment between initiation and settlement. Use this to show “pending payments” in your app — especially payments held for transaction-monitoring review.
StatusMeaning
PENDINGInitiated, not yet processed.
PENDING_TMHeld for transaction-monitoring (compliance) review.
APPROVEDCleared — it will appear in transactions.
FAILEDRejected or failed.
Without a status filter you get only PENDING and PENDING_TM — the ones worth showing as “in progress”. Pass status=APPROVED,FAILED if you need history.

Authorizations

Authorization
string
header
required

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

Path Parameters

customerId
string
required

Customer identifier.

accountId
string
required

Account identifier. The account determines which optional features and limits apply.

Query Parameters

status
string

PENDING, PENDING_TM, APPROVED, FAILED (comma-separated). Default: PENDING,PENDING_TM.

type
string

CUSTOMER, BATCH, CARD (comma-separated). Default: all three.

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

Response

Payment requests

success
boolean
Example:

true

data
object[]
total
integer
Example:

4

page
integer
Example:

1

limit
integer
Example:

10