curl --request GET \
--url https://api.next.orenda.finance/cards/transactions/search \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/cards/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/cards/transactions/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"result": {
"total": 1,
"data": [
{
"transactionId": "b7c8d9e0-6666-4a7b-8c8d-eeeeffff0000",
"cardId": "a6b7c8d9-5555-4f6a-8b7c-ddddeeeeffff",
"customerId": "c9f8e7d6-1111-4b2c-8d3e-444455556666",
"status": "APPROVED",
"direction": "OUT",
"isFee": false,
"amount": 999,
"currency": "USD",
"merchantName": "Netflix",
"createdDateTime": "2026-06-02T18:12:22.000Z"
}
]
}
}Search card authorisations
Search card authorisation (webhook) records. Required claim: transactions.view.
These are the provider authorisation/webhook events behind card spend, distinct from the settled ledger transactions returned by GET /transactions/search.
All filters accept comma-separated values for multi-select.
curl --request GET \
--url https://api.next.orenda.finance/cards/transactions/search \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/cards/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/cards/transactions/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"result": {
"total": 1,
"data": [
{
"transactionId": "b7c8d9e0-6666-4a7b-8c8d-eeeeffff0000",
"cardId": "a6b7c8d9-5555-4f6a-8b7c-ddddeeeeffff",
"customerId": "c9f8e7d6-1111-4b2c-8d3e-444455556666",
"status": "APPROVED",
"direction": "OUT",
"isFee": false,
"amount": 999,
"currency": "USD",
"merchantName": "Netflix",
"createdDateTime": "2026-06-02T18:12:22.000Z"
}
]
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
The program to scope results to. Required unless allPrograms=true is passed. Multi-program operators are bounded to their entitled programs.
Filter by customer ID. Comma-separated for multi-select.
Free-text search across indexed fields.
1-based page number. Defaults to 1.
x >= 1Maximum number of items per page.
x >= 1When true, searches across all of the operator's entitled programs instead of a single programId.
true, false Filter by status. Comma-separated for multi-select.
Lower bound (inclusive) on record date, ISO 8601.
Upper bound (inclusive) on record date, ISO 8601.
Result format. json (default) returns inline results; file returns a presigned S3 CSV URL (valid 1 hour) in place of the data array.
json, file Customises the filename of the exported CSV when resultType=file.
Filter by card transaction / authorisation ID. Comma-separated for multi-select.
Filter by direction (e.g. IN, OUT). Comma-separated for multi-select.
When true, returns only fee authorisations; when false, excludes them.
true, false