Get allowed operations
curl --request GET \
--url https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--header 'X-Forwarded-From: <x-forwarded-from>' \
--header 'X-Tenant-ID: <x-tenant-id>' \
--header 'deviceId: <deviceid>' \
--header 'platform: <platform>'import requests
url = "https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations"
headers = {
"X-Tenant-ID": "<x-tenant-id>",
"X-Forwarded-For": "<x-forwarded-for>",
"X-Forwarded-From": "<x-forwarded-from>",
"platform": "<platform>",
"deviceId": "<deviceid>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Tenant-ID': '<x-tenant-id>',
'X-Forwarded-For': '<x-forwarded-for>',
'X-Forwarded-From': '<x-forwarded-from>',
platform: '<platform>',
deviceId: '<deviceid>'
}
};
fetch('https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations', 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://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Forwarded-For: <x-forwarded-for>",
"X-Forwarded-From: <x-forwarded-from>",
"X-Tenant-ID: <x-tenant-id>",
"deviceId: <deviceid>",
"platform: <platform>"
],
]);
$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://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Tenant-ID", "<x-tenant-id>")
req.Header.Add("X-Forwarded-For", "<x-forwarded-for>")
req.Header.Add("X-Forwarded-From", "<x-forwarded-from>")
req.Header.Add("platform", "<platform>")
req.Header.Add("deviceId", "<deviceid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations")
.header("X-Tenant-ID", "<x-tenant-id>")
.header("X-Forwarded-For", "<x-forwarded-for>")
.header("X-Forwarded-From", "<x-forwarded-from>")
.header("platform", "<platform>")
.header("deviceId", "<deviceid>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Tenant-ID"] = '<x-tenant-id>'
request["X-Forwarded-For"] = '<x-forwarded-for>'
request["X-Forwarded-From"] = '<x-forwarded-from>'
request["platform"] = '<platform>'
request["deviceId"] = '<deviceid>'
response = http.request(request)
puts response.read_bodyFinancial Operations
Get beneficiaries for wallet
Retrieve allowed operations for an account, optionally including beneficiaries and consents.
GET
/
api
/
v2.1
/
fintrans
/
{accountId}
/
allowed-operations
Get allowed operations
curl --request GET \
--url https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--header 'X-Forwarded-From: <x-forwarded-from>' \
--header 'X-Tenant-ID: <x-tenant-id>' \
--header 'deviceId: <deviceid>' \
--header 'platform: <platform>'import requests
url = "https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations"
headers = {
"X-Tenant-ID": "<x-tenant-id>",
"X-Forwarded-For": "<x-forwarded-for>",
"X-Forwarded-From": "<x-forwarded-from>",
"platform": "<platform>",
"deviceId": "<deviceid>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Tenant-ID': '<x-tenant-id>',
'X-Forwarded-For': '<x-forwarded-for>',
'X-Forwarded-From': '<x-forwarded-from>',
platform: '<platform>',
deviceId: '<deviceid>'
}
};
fetch('https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations', 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://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Forwarded-For: <x-forwarded-for>",
"X-Forwarded-From: <x-forwarded-from>",
"X-Tenant-ID: <x-tenant-id>",
"deviceId: <deviceid>",
"platform: <platform>"
],
]);
$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://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Tenant-ID", "<x-tenant-id>")
req.Header.Add("X-Forwarded-For", "<x-forwarded-for>")
req.Header.Add("X-Forwarded-From", "<x-forwarded-from>")
req.Header.Add("platform", "<platform>")
req.Header.Add("deviceId", "<deviceid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations")
.header("X-Tenant-ID", "<x-tenant-id>")
.header("X-Forwarded-For", "<x-forwarded-for>")
.header("X-Forwarded-From", "<x-forwarded-from>")
.header("platform", "<platform>")
.header("deviceId", "<deviceid>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/allowed-operations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Tenant-ID"] = '<x-tenant-id>'
request["X-Forwarded-For"] = '<x-forwarded-for>'
request["X-Forwarded-From"] = '<x-forwarded-from>'
request["platform"] = '<platform>'
request["deviceId"] = '<deviceid>'
response = http.request(request)
puts response.read_bodyThis endpoint requires
X-Forwarded-From and a device header. The backend accepts any of:
deviceId, X-Device-Id, device-id.Sample cURL
curl --location 'https://sandbox.finhub.cloud/api/v2.1/fintrans/28e09085-2167-4284-ad1a-239122af836f/allowed-operations?includeBeneficiaries=true&includeConsents=true' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'X-Tenant-ID: <TENANT_ID>' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'User-Agent: <USER_AGENT>' \
--header 'X-Forwarded-From: <FORWARDED_FROM>' \
--header 'X-Forwarded-For: <FORWARDED_FOR>' \
--header 'platform: Web' \
--header 'deviceId: <DEVICE_ID>' \
Missing Headers Error Example
{
"code": 500,
"data": {
"deviceId_accepted": [
"deviceId",
"X-Device-Id",
"device-id"
],
"missingHeaders": [
"X-Forwarded-From",
"deviceId"
]
},
"message": "Missing required header(s)"
}
Response Example
{
"code": 200,
"data": {
"sessionId": "e76cfef8-1897-45a3-b9c1-3e90ffb3fae0",
"tenantId": "97e7ff29-15f3-49ef-9681-3bbfcce4f6cd",
"time": "2026-04-01T13:10:16.455800933",
"accounts": [
{
"id": "28e09085-2167-4284-ad1a-239122af836f",
"type": "CONSUMER_WALLET",
"iban": "LT803320011000055865",
"currency": "EUR",
"balance": 0,
"flags": {},
"ownerId": "7d1d49db-bf39-4123-94d8-c03a1e6b4d4a",
"assetId": "aeee88d3-bc7b-4f47-8850-8183bd9eb9b0",
"assetSubUnitId": "dd35508b-7529-49b8-ae56-fafd523f953f"
}
],
"beneficiaries": [
{
"id": "03337653-7f7e-49af-a9fa-9ea444132510",
"assetId": "03337653-7f7e-49af-a9fa-9ea444132510",
"assetSubUnitId": "dd35508b-7529-49b8-ae56-fafd523f953f",
"kind": "EXTERNAL",
"walletId": "28e09085-2167-4284-ad1a-239122af836f",
"currencyHints": [
"EUR"
],
"allowedOperationTypes": [],
"beneficiaryId": "ba77dbdb-a1f4-48d0-bb50-a44123ffc9b2",
"iban": "LT203320011000000006",
"currency": "EUR",
"partyType": "INDIVIDUAL_CUSTOMER",
"status": "",
"name": "",
"assetSubUnitName": "European Monetary Unit"
}
],
"operations": [
{
"fromAccountId": "28e09085-2167-4284-ad1a-239122af836f",
"fromAssetId": "aeee88d3-bc7b-4f47-8850-8183bd9eb9b0",
"fromAssetSubUnitId": "dd35508b-7529-49b8-ae56-fafd523f953f",
"toRefId": "03337653-7f7e-49af-a9fa-9ea444132510",
"toAssetSubUnitId": "dd35508b-7529-49b8-ae56-fafd523f953f",
"beneficiaryId": "ba77dbdb-a1f4-48d0-bb50-a44123ffc9b2",
"opType": "PURCHASE",
"currencies": [
"EUR"
],
"perTxnLimit": 50000,
"requiresConsent": true
}
],
"limits": {
"perTxn": {
"EUR": 50000
},
"daily": {
"EUR": 200000
},
"monthly": {
"EUR": 1000000
}
},
"fees": {
"model": "SEPARATE_FEE_TRANSFER",
"rules": {},
"flags": {
"feeChannel": "SEPARATE"
}
},
"consentModel": {
"requireConsent": true,
"expiryMinutes": 30,
"scope": "PAYMENT"
},
"snapshotId": "e76cfef8-1897-45a3-b9c1-3e90ffb3fae0",
"hasBeneficiaries": true,
"beneficiaryCount": 8
},
"message": "Success"
}
Headers
Client IP address
Example:
"127.0.0.1"
Client source identifier
Example:
"client-app"
Client platform
Example:
"Web"
Device identifier
Example:
"device-demo-001"
Path Parameters
Response
200
OK
⌘I