Bank accounts
Add and manage bank accounts to enable transfers across rails and currencies.
Adding a bank account for your customer requires specific details that vary by currency and region. In this guide, we break down what’s required for common cases.
Bank Account Creation (API)
POST
https://api.spherepay.co/v2/bank-accountPOST
https://api.sandbox.spherepay.co/v2/bank-accountFor full API details, refer to the Create Bank Account API Reference.
Supported Rails & Currencies
SpherePay supports a variety of rails and currencies for bank accounts. You can check the list of supported rails and currencies in the table below.
| Currency | Rails | Status |
|---|---|---|
| USD | ACH, Wire | ✅ |
| EUR | SEPA | ✅ |
Request Examples
United States (USD)
Required:
- Routing number
- Account number
- Account type
{
...
"accountDetails": {
"accountNumber": "1234567890",
"routingNumber": "123456789",
"accountType": "savings"
},
"networks": ["ach", "wire"],
...
}European Union (EUR)
Required:
- IBAN
- BIC/SWIFT
{
...
"accountDetails": {
"iban": "DE89370400440532013000",
"bic": "COBADEFFXXX"
},
"networks": ["sepa"],
...
}