Skip to main content

Correspondent Banking

Correspondent banking is the arrangement by which one bank (the correspondent) provides payment and other services to another bank (the respondent) โ€” typically to enable cross-border payments in currencies or markets where the respondent bank doesn't have a direct presence.


Why Correspondent Banking Exists

Banks cannot maintain direct accounts at every bank in every country. Instead, they maintain accounts at a network of correspondent banks in key financial centres and currencies. This network allows a payment to travel from any bank to any other bank globally, even without a direct relationship.

Small AU regional bank โ†’ ANZ (correspondent) โ†’ JP Morgan NY (correspondent) โ†’ Small US bank

Nostro / Vostro / Loro Accounts

TermPerspectiveDefinitionExample
NostroOur bank"Our account at their bank" โ€” account we hold with our correspondentAU Bank's USD account at JP Morgan NY
VostroTheir bank"Their account at our bank" โ€” account our correspondent holds with usJP Morgan NY's AUD account at AU Bank
LoroA third bank"Their (a third bank's) account" โ€” used when describing a third party"Correspondent's account at JP Morgan"

Funding the Nostro

To send USD payments, AU Bank must prefund its USD Nostro at a US correspondent:

AU Bank transfers AUD โ†’ sells AUD/buys USD (FX desk) โ†’ funds USD Nostro at JP Morgan NY

Or receives USD inflows from other banks which credit the Nostro.


Correspondent Routing Chain

Simple Chain (1 correspondent)

Customer (AU) submits AUD โ†’ USD payment to US bank

AU Debtor Bank
โ”‚ Holds USD Nostro at ANZ (NY branch)
โ”‚ MT103 โ†’ ANZ NY
โ–ผ
ANZ New York Branch
โ”‚ Holds USD Nostro at Bank of New York (BONY)
โ”‚ MT103 โ†’ BONY
โ–ผ
Bank of New York (Mellon)
โ”‚ Maintains direct relationships with most US banks
โ”‚ Routes to creditor bank
โ–ผ
US Creditor Bank
โ”‚ Credits customer account
โ–ผ
US Customer receives funds

Complex Chain (multi-hop)

Payment: AU โ†’ Brazil (BRL)

AU Bank โ†’ HSBC (AU) [USD Nostro] โ†’ Citibank NY [USD] โ†’ Banco Bradesco (Brazil) โ†’ Customer BRL account

Each intermediary takes a correspondent fee and applies its own compliance checks.


Key Correspondent Banking Messages

MessageDirectionPurpose
MT103Debtor bank โ†’ each bank in chainCustomer credit transfer instruction
MT202 COVDebtor bank โ†’ correspondentCover payment (funds movement)
MT910Receiving bank โ†’ sending bankConfirmation of credit
MT940Correspondent โ†’ account holderNostro account statement
MT950Correspondent โ†’ account holderStatement (simplified)
pacs.008ISO 20022 equivalent of MT103FI-to-FI customer credit transfer
pacs.009ISO 20022 equivalent of MT202FI-to-FI financial transfer

Correspondent Banking and SWIFT gpi

Before SWIFT gpi, cross-border payments were opaque:

  • No visibility into which correspondent currently held the funds
  • No tracking of deductions (fees taken by each hop)
  • No SLA for delivery

With SWIFT gpi:

  • UETR (UUID4) tracks the payment end-to-end
  • Each bank in the chain updates the gpi Tracker
  • Fee deductions at each hop are visible
  • 95%+ of gpi payments credited within 24 hours (most sub-1 hour)
  • Banks must pass on the full amount or declare deductions explicitly

De-risking โ€” The Correspondent Banking Problem

De-risking refers to correspondent banks terminating relationships with respondent banks they consider too risky โ€” typically smaller banks, banks in high-risk jurisdictions, or banks with weak AML/compliance controls.

Why De-risking Happens

ReasonDetail
Regulatory riskFear of fines for inadvertent AML/sanctions violations
Low profitabilitySmall correspondent relationships not worth the compliance overhead
Reputational riskCorrespondent implicated in scandal via respondent
FATF grey/black listsCountries on FATF lists often lose correspondent access

Consequences

  • Banks in Pacific Islands, Caribbean, some African nations losing USD access
  • Remittance corridors closing (expensive for migrant workers)
  • Financial exclusion for whole regions
  • Forces banks to use intermediaries at higher cost

Wolfsberg Group Guidance

The Wolfsberg Group (major correspondent banks) provides guidelines for CDD (Customer Due Diligence) on respondent banks:

  • Annual correspondent due diligence questionnaire
  • Assessment of AML/sanctions program quality
  • Ownership and management review
  • Jurisdictional risk assessment

Nostro Reconciliation

A Nostro account must be reconciled daily โ€” the bank's internal expectation vs the correspondent's statement:

Internal Ledger: Nostro Statement (MT940/camt.053):
USD Credits: $15,234,500 vs Credits: $15,234,000
USD Debits: $12,000,000 vs Debits: $12,000,000
Expected Close: $3,234,500 Actual Close: $3,234,000
BREAK: $500

Common break causes:

  • Fee deductions: Correspondent deducted fees not in internal ledger
  • Timing differences: Payment credited next day vs expected same day
  • Rejected payment: Returned by beneficiary bank, not yet notified
  • FX conversion: Rate applied differed from expected

Engineering Notes

// Nostro position monitoring
@Service
public class NostroReconciliationService {

public ReconciliationResult reconcileNostro(Currency currency, LocalDate date) {
// Internal ledger expected position
MonetaryAmount expected = nostroLedgerService
.getClosingBalance(currency, date);

// Correspondent statement (received via MT940/camt.053)
MonetaryAmount actual = correspondentStatementService
.getClosingBalance(currency, date);

MonetaryAmount break_ = expected.subtract(actual);

if (break_.isZero()) {
return ReconciliationResult.reconciled(currency, date);
}

// Classify the break
List<BreakItem> breakItems = breakAnalysisService
.analyseBreak(currency, date, break_);

return ReconciliationResult.broken(currency, date, break_, breakItems);
}
}

// Model a correspondent relationship
@Entity
public class CorrespondentRelationship {
private String correspondentBic;
private String correspondentName;
private Currency currency;
private String nostroAccount;
private BigDecimal minimumBalance; // trigger for top-up
private BigDecimal targetBalance; // optimal operating balance
private LocalDate ddqExpiryDate; // due diligence questionnaire expiry
private RelationshipStatus status; // ACTIVE, SUSPENDED, TERMINATED
}

Correspondent Banking vs Direct Clearing

Correspondent BankingDirect Clearing
Account typeBilateral Nostro/VostroCentral bank ESA
SettlementCommercial bank moneyCentral bank money
RiskCounterparty risk on correspondentNear-zero (central bank)
ScopeCross-border, any currencyDomestic, scheme currency
VisibilityImproving (gpi)High (RTGS confirmation)
CostPer-hop fees + FXScheme fees only

Interview Questions

Q: What is the difference between Nostro and Vostro?

Nostro ("our" in Italian) = an account we hold at another bank in their country/currency (e.g. our USD account at JP Morgan NY). Vostro ("your") = an account another bank holds at us (e.g. JP Morgan's AUD account at our bank). The same account is simultaneously a Nostro from our perspective and a Vostro from the correspondent's perspective.

Q: Why might a bank lose its correspondent banking relationship and what are the consequences?

Banks are de-risked when correspondents determine the compliance cost of maintaining the relationship outweighs the revenue, or when the respondent is in a high-risk jurisdiction. Consequences: loss of USD clearing access, inability to process international remittances, increased cost if alternative correspondents are found, and potential for customers to be unable to receive/send international payments entirely.

Anti-Money Laundering

Correspondent banking is a major vector for money laundering โ€” funds from criminal activity can be layered through multiple jurisdictions via nested correspondent chains. This is why correspondent bank due diligence (DDQ) and ongoing monitoring of payment flows through each correspondent relationship is a regulatory requirement for all ADIs.