https://www.iso20022js.com/ iso20022.js Contact: svapnil@woodside.sh Open source Enterprise-grade ISO20022 Infrastructure iso20022.js is a low-dependency, open-source node library that helps companies communicate with banks using open ISO20022 standards. Try sending a SWIFT payment in three lines of code. npm install iso20022.js Get StartedView on GitHub Code[ ]XML import { ISO20022 } from 'iso20022.js' const iso20022 = new ISO20022({ initiatingParty: { name: 'Acme Corporation', id: 'ACMECORP', account: { accountNumber: '123456789012', }, agent: { bic: 'CHASUS33', bankAddress: { country: 'US', } } } }); const creditPaymentInitiation = iso20022.createSWIFTCreditPaymentInitiation({ paymentInstructions: [{ type: 'swift', direction: 'credit', amount: 1000, currency: 'USD', creditor: { name: 'Jane Smith', account: { iban: 'DE89370400440532013000' }, agent: { bic: 'DEUTDEFF', }, address: { streetName: "123 Main St", townName: "Funkytown", postalCode: "12345", country: "DE", } } }] }); console.log(creditPaymentInitiation.toString()); Request a feature you would like to see Talk to the Team Built with [?] in NYC by Woodside Labs LLC.