Initiate Nostro Account Liquidity Transfer
curl --request POST \
--url https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"amount": 1,
"creditorAccount": "string",
"currency": "Eur",
"debtorAccount": "string"
}
'import requests
url = "https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers"
payload = {
"amount": 1,
"creditorAccount": "string",
"currency": "Eur",
"debtorAccount": "string"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: 1, creditorAccount: 'string', currency: 'Eur', debtorAccount: 'string'})
};
fetch('https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers', 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.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount' => 1,
'creditorAccount' => 'string',
'currency' => 'Eur',
'debtorAccount' => 'string'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers"
payload := strings.NewReader("{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}"
response = http.request(request)
puts response.read_body{
"amount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"creditorAccount": "<string>",
"currency": "<string>",
"debtorAccount": "<string>",
"id": 123,
"sepaMessageId": "<string>",
"settlementDate": "2023-12-25",
"updatedAt": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}Nostro Accounts
Initiate Nostro account liquidity transfer
Initiates a liquidity transfer between Nostro accounts.
POST
/
v1
/
nostro-accounts
/
transfers
Initiate Nostro Account Liquidity Transfer
curl --request POST \
--url https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"amount": 1,
"creditorAccount": "string",
"currency": "Eur",
"debtorAccount": "string"
}
'import requests
url = "https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers"
payload = {
"amount": 1,
"creditorAccount": "string",
"currency": "Eur",
"debtorAccount": "string"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: 1, creditorAccount: 'string', currency: 'Eur', debtorAccount: 'string'})
};
fetch('https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers', 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.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount' => 1,
'creditorAccount' => 'string',
'currency' => 'Eur',
'debtorAccount' => 'string'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers"
payload := strings.NewReader("{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pgw-sandbox.finventi.com/v1/nostro-accounts/transfers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": 1,\n \"creditorAccount\": \"string\",\n \"currency\": \"Eur\",\n \"debtorAccount\": \"string\"\n}"
response = http.request(request)
puts response.read_body{
"amount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"creditorAccount": "<string>",
"currency": "<string>",
"debtorAccount": "<string>",
"id": 123,
"sepaMessageId": "<string>",
"settlementDate": "2023-12-25",
"updatedAt": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}{
"code": "<string>",
"data": {
"errors": [
{
"code": "<string>",
"field_name": "<string>",
"message": "<string>",
"value": "<string>"
}
],
"message": "<string>"
},
"message": "<string>"
}Overview
This endpoint initiates fund transfers between your Nostro accounts. Manage liquidity efficiently by moving funds between the SCT and INST Nostro accounts of your clearing system connection (CENTROlink only - not available for EKS; cross-rail transfers are not supported).Headers
Body
application/json
Basic liquidity transfer request example
Amount in minor currency units
Creditor (Recipient) Account (IBAN)
Required string length:
1 - 34Currency units
Required string length:
1 - 3Debtor (Sender) Account (IBAN)
Required string length:
1 - 34Response
Nostro Account Liquidity Transfer initiated
Available options:
CREATED, SENT_TO_CLEAR, ACCEPTED, REJECTED, COMPLETED Last modified on July 10, 2026
⌘I