IBAN, SWIFT Validator and Routing Number Lookup
Pay $1.00 for 1,000 results
IBAN, SWIFT Validator and Routing Number Lookup
Pay $1.00 for 1,000 results
Validates IBAN and SWIFT/BIC codes and returns data for routing number for ACH and Wire.
IBAN, SWIFT Validator and Routing Number Lookup
This API provides essential tools for validating International Bank Account Numbers (IBANs), SWIFT codes, and performing routing number lookups.
Features:
-
IBAN Validation: Validate International Bank Account Numbers (IBANs) to ensure correct formatting and structure according to international standards.
-
SWIFT Validation: Validate SWIFT/BIC codes to ensure they adhere to the correct format and are associated with valid financial institutions.
-
Routing Number Lookup: Perform routing number lookups to retrieve information about financial institutions associated with specific routing numbers.
Examples below for Request and Response
IBAN Validation Request
1{ 2 "number": "TR330006100519786457841326", 3 "type": "iban" 4}
IBAN Validation Response
1{ 2 "iban":"TR330006100519786457841326", 3 "bban":"0006100519786457841326", 4 "countryCode":"TR", 5 "valid":true 6}
SWIFT/BIC Validation Request
1{ 2 "number": "USBKUS44IMT", 3 "type": "swift" 4}
SWIFT/BIC Validation Response
1{ 2 "bankCode": "USBK", 3 "countryCode": "US", 4 "locationCode": "44", 5 "testBIC": false, 6 "branchCode": "IMT", 7 "valid": true 8}
Routing Number Lookup Request
1{ 2 "number": "011000015", 3 "type": "routing" 4}
Routing Number Lookup Response
1{ 2 "valid": true, 3 "ach": { 4 "Name": "Federal Reserve Bank", 5 "Address": "1000 Peachtree St N.e.Atlanta, GA 30309", 6 "Phone": "877-372-2457", 7 "Type": "Main Office", 8 "Servicing Fed's Main Office ": "011000015", 9 "Status": "This is a Federal Reserve Bank.", 10 "Change Date": "12/24/2015" 11 }, 12 "wire": { 13 "Name": "Federal Reserve Bank Of Boston", 14 "Telegraphic Name": "FRB-BOS", 15 "Location": "Boston, MA", 16 "Funds Transfer Status": "Eligible", 17 "Book-Entry Securities Transfer Status": "Eligible", 18 "Revision Date": "09/10/2004" 19 } 20}