Build Financial Applications in Days
Integrate against any bank in the world and immediately start sending payments.
Drop-in compatibility with leading banks across the globe:
Build Bank Integrations Faster
We built the iso20022.js library to create payment instructions.
We built Fiat Web Services to manage these payments in production web applications against real banks.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Fiatwebservices } from 'fiatwebservices';
const fws = new Fiatwebservices()
const payment = checking.createACHCreditPaymentInitiation([
    {
        currency: 'USD',
        amount: 1250000, // $12,500.00 Dollars
        creditor: {
            name: 'Alex Kan',
            account: {
                accountNumber: '333456118812',
            },
            agent: {
                abaRoutingNumber: '021000021',
            }
        },
        remittanceInformation: 
          'PAYROLL - BIWEEKLY SALARY SR SOFTWARE ENGINEER'
    }
]);
// Send using fiatwebservices.com
fws.transfers.ach.create(payment)
Banking APIs are Broken
Modern web apps have a difficult time sending payments to most banks. Banking APIs make for an unstable foundation for financial infrastructure, and require a lot of work to implement. Payment failures lead to missed payments and lost revenue.
We Make Sending Files Easier
Fiat Web Services is a drop-in solution for financial institutions to communicate with banks using SFTP without worrying about managing servers.