Fees and Amounts
Returns the maximum payment amount for a specified country, based on the countryCode and currencyCode provided. (Currency code is required because some countries use 2 currencies in parallel.)
2-letter country code of the requested country.
SG3-letter currency code.
SGDSuccessful response
Country not found
GET /countries/{countryCode}/currencies/{currencyCode}/max-amounts HTTP/1.1
Host: localhost:3000
Accept: */*
[
{
"clearingSystemId": "SGDFAST",
"maxAmount": "200000"
}
]Retrieves the various fees and amounts based on specified parameters. Information can be used in the pacs.008 payment instruction.
2-letter country code of the SOURCE country.
SGThe source currency code.
SGD2-letter country code of the DESTINATION country.
MYThe destination currency code.
MYRThe currency of the specified amount.
SGDThe amount in the specified amount currency. If the amount is defined in the Source Currency, this amount must be the amount AFTER the Source PSP has made any deduction. (This is the Interbank Settlement Amount that must be transferred to the FXP's account at the Source SAP). If the amount is defined in the Destination Currency, this must be the Creditor Agent Amount that will be credited to the recipient's account.
100The exchange rate from the source to destination currency.This information must be taken from (a) a quote provided by Nexus, or (b) the Source PSP's own exchange rate (when the Source PSP manages their own FX.).
3.5Successful response
GET /fees-and-amounts/{sourceCountry}/{sourceCurrency}/{destinationCountry}/{destinationCurrency}/{amountCurrency}/{amount}/{exchangeRate} HTTP/1.1
Host: localhost:3000
Accept: */*
Successful response
{
"debtorAgent": {
"interbankSettlementAmount": {
"amount": 100,
"currency": "SGD"
},
"nexusSchemeFee": {
"amount": 0.5,
"currency": "SGD"
}
},
"creditorAgent": {
"interbankSettlementAmount": {
"amount": 350,
"currency": "MYR"
},
"chargesAmount": {
"amount": 2.24,
"currency": "MYR"
},
"creditorAccountAmount": 347.76
}
}Returns the Nexus Scheme Fee Formula (paid by the Source IPS to the Nexus Scheme) in a specified Source Currency, denominated in the Source Currency
The country code of the SOURCE Country.
SGThe 3-letter currency code
SGDSuccessful response
GET /fee-formulas/nexus-scheme-fee/{countryCode}/{currencyCode} HTTP/1.1
Host: localhost:3000
Accept: */*
Successful response
{
"countryCode": "SG",
"currency": "SGD",
"nominalFeeAmount": "0.50",
"percentageFeeAsRatio": 0.001
}Returns the Creditor Agent (Destination PSP) Fee FORMULA for a specified Destination Country, denominated in the Destination Currency.
The 2-letter country code of the DESTINATION Country.
MYThe 3-letter currency code of the DESTINATION Country.
MYRSuccessful response
GET /fee-formulas/creditor-agent-fee/{countryCode}/{currencyCode} HTTP/1.1
Host: localhost:3000
Accept: */*
Successful response
{
"countryCode": "MY",
"nominalFee": {
"amount": "2.22",
"currency": "MYR"
},
"percentageFee": 0.1
}Last updated
