IBAN, SWIFT Validator and Routing Number Lookup avatar
IBAN, SWIFT Validator and Routing Number Lookup

Pricing

$10.00/month + usage

Go to Apify Store
IBAN, SWIFT Validator and Routing Number Lookup

IBAN, SWIFT Validator and Routing Number Lookup

Validates IBAN and SWIFT/BIC codes and returns data for routing number for ACH and Wire.

Pricing

$10.00/month + usage

Rating

0.0

(0)

Developer

md

md

Maintained by Community

Actor stats

1

Bookmarked

37

Total users

3

Monthly active users

6 months ago

Last modified

Categories

Share

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

{
"number": "TR330006100519786457841326",
"type": "iban"
}

IBAN Validation Response

{
"iban":"TR330006100519786457841326",
"bban":"0006100519786457841326",
"countryCode":"TR",
"valid":true
}

SWIFT/BIC Validation Request

{
"number": "USBKUS44IMT",
"type": "swift"
}

SWIFT/BIC Validation Response

{
"bankCode": "USBK",
"countryCode": "US",
"locationCode": "44",
"testBIC": false,
"branchCode": "IMT",
"valid": true
}

Routing Number Lookup Request

{
"number": "011000015",
"type": "routing"
}

Routing Number Lookup Response

{
"valid": true,
"ach": {
"Name": "Federal Reserve Bank",
"Address": "1000 Peachtree St N.e.Atlanta, GA 30309",
"Phone": "877-372-2457",
"Type": "Main Office",
"Servicing Fed's Main Office ": "011000015",
"Status": "This is a Federal Reserve Bank.",
"Change Date": "12/24/2015"
},
"wire": {
"Name": "Federal Reserve Bank Of Boston",
"Telegraphic Name": "FRB-BOS",
"Location": "Boston, MA",
"Funds Transfer Status": "Eligible",
"Book-Entry Securities Transfer Status": "Eligible",
"Revision Date": "09/10/2004"
}
}