Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been having a hard time finding more information to this question, and since this site is visited by a lot of people from the United States, you guys might know/find the answer more easily.

Banks in europe each have a SWIFT Number, while US Banks use Routing Numbers. This leads to following questions:

  1. Does each bank in the US also carry a BIC number? (SWIFT)
  2. Is there a 1-1 relationship between BIC/SWIFT and Routing Numbers?
  3. Is there a list of these numbers somewhere?

Background information: We're adding international payments to our bookkeeping application. Users can add international suppliers, but my boss prefered not to change the current supplier table but to have the ROUTING NUMBER in another table, with as PK the BIC. I'm wondering if BIC is a valid choice, or if it should just be BANK ACCOUNT NUMBER.

Bounty Questions:

  • We know each bank has a Routing Number. Is there a 1-1 relationship, or is this 1-n?

  • I'm still wondering about a 1-1-1 relation between bank-BIC-Routing. Is there a table with all US banks, their BIC/SWIFT number and their Routing numbers?

share|improve this question
3  
Don't tag not-programming-related. @ike – Roger Pate May 18 '10 at 22:35

7 Answers

up vote 3 down vote accepted

The BIC Code, SWIFT code and the Sort Code depend on the country in which the bank is located. Each bank (and its branch) has a routing bank number aka national bank number based on the country it is located in.

The routing number aka Routing Transit Number(RTN) is a unique, bank-identifying number that directs transactions to the proper bank in US. This number usually precedes the account number.

If you're going for international transfers, you require SWIFT or IBAN or other similar codes like RTGS(NEFT) depending on the country (of the beneficiary's bank). If your transactions are within US, then RTN is whats required.

Here is some info on routing numbers for banks in US.

The supplier has bank account info, so we can pay him. Apparently, US Suppliers have US Banks, and we need the routing number to be able to pay.

Yes there is a 1-1 relation between the bank, BIC/Swift and RTN. You could have separate fields, one for the SWIFT/BIC, one for the routing number and one for bank account number all in one table instead of having them referenced in different tables. When making international payments, the BIC/SWIFT can be combined with the IBAN to process the transaction.The IBAN is made up of a code that identifies the country the account belongs to, the account holder's bank and the account number itself.

share|improve this answer

The *B*ank *I*dentification *C*ode is the de-facto Western-world standard for identifying banks, and is a necessary component of any truly Western-world international payment system.

The Islamic world has its own networks and systems for international payments (it has a name, but that escapes me now), and I doubt that they employ the BIC directory.

It is independent from SWIFT, in that an identification standard and a payment network cannot possibly be one and the same thing. The two are very closely intertwined, in that BIC is the only standard that is universally accepted in our western world, and that SWIFT is the only network available to do payments across the entire western world.

share|improve this answer
2  
I fail to see the relation between the original question and religion. – bluesmoon Jul 17 '10 at 10:54
Islam has strict rules about borrowing and lending, so Islamic banks in Islamic countries tend not to mix with the Western financial system. – Douglas Held May 30 '12 at 19:39
  1. All US banks should have a swift code
  2. BIC is not the same thing as SWIFT
  3. You can get both SWIFT and BIC listings here https://www2.swift.com/directories/ or you can also search google for individual bank SWIFT codes
share|improve this answer
Thank you. I was under the impression BIC and SWIFT were the same (wikipedia seems to confirm this). I must have mistyped question 2, I was actually wondering about a 1-1 relation between BIC/SWIFT and the ABA Routing Number. – Konerak May 9 '10 at 8:53
1  
Oh, well routing numbers are another similar, but different thing. They both are used to identify the bank, but routing numbers are used mainly for use with checking accounts. Also, you would not be able to use BIC/SWIFT and routing numbers interchangeably.. – n8. May 11 '10 at 6:26
Thanks, that helps. I'm still wondering about a 1-1-1 relation between bank-BIC-Routing though ;) – Konerak May 11 '10 at 13:59

Any bank that directly makes international transfers must have all of these, but there are banks which only interact with other US banks.

There is NOT a 1-1 ratio of BIC/Swift #s to Routing numbers. Not all banks have BIC/Swift. Specifically, many credit unions do not. I learned this when I did some contracted programming for a European company and the credit union that I bank with was unable to accept a wire transfer because they did not have a Swift #.

share|improve this answer
yeah, I'm in this situation right now. May I ask how you solved it? – fcurella Jan 30 '11 at 17:35
1  
@fcurella - I got a new bank account at a bank that has one. – Jeffrey Blake Feb 8 '11 at 1:56

I am not sure what your intentions are.

Some open questions:

  1. What exactly do you mean by 'Users can add international suppliers'. I do not think it is good practice to use user-defined info as a primary key.
  2. A BIC or RTN identifies a financial institution - why do you think a supplier will have one? A supplier will probably just have some bank account info.
  3. You application will do 'international payments'. How? Is it going to be connected to Fedwire or SWIFT? If so just use whatever identifier used on the particular network.
share|improve this answer
1. That's really part of the background info, but for the sake of discussion: users are allowed and supposed to enter suppliers. The primary key of that table is auto-generated, one of the fields is the BIC (user-inputted offcourse) of the bank the supplier belongs to. We want to allow routing numbers to be entered, but they cannot be stored in the same table. Do I need another table with PK-Routing, or can I use BIC-Routing (if there is a 1-1 relation). – Konerak Jul 14 '10 at 6:41
2. The supplier has bank account info, so we can pay him. Apparently, US Suppliers have US Banks, and we need the routing number to be able to pay. – Konerak Jul 14 '10 at 6:41
3. The payment is processed by the Belgian Post Office - they don't really have any identifiers, you just provide the info as if you were at the post office counter and you want to pay. Besides, I'd like my database layout to be independant of theirs. – Konerak Jul 14 '10 at 6:43
For your 1: Functionally there is no difference. So, what are the technical pros and cons of using a table with PK/Routing over a table with BIC/Routing? – stijnm Jul 15 '10 at 6:10

Currently i supervise sending hundreds of payments a day. I'm also building a payment platform.

There are a few confusing and wrong statements above.

1 - No. Not every bank in the US has a BIC/SWIFT. In fact many don't. When they dont they have a reciprocal arrangement with a large bank (intermediary bank) who does. In that case a large bank would accept payments to it and forward payments on to the smaller institution. This is very common. In this circumstance you would see an intermediary bank and payments instructions stating "For Further Credit to...."

A usa routing number is a USA national clearing code (NCC). I.e. a country specific bank identifying number.

International payments can be made using NCC codes

2 - Not necessarily. SWIFT and Routing numbers can identify individual branches. However, sometimes they can represent entire groups of branches

3 - you can download swift numbers from here https://www2.swift.com/directories/ and routing numbers here http://www.fededirectory.frb.org/search.cfm

share|improve this answer

I'm still wondering about a 1-1-1 relation between bank-BIC-Routing

There is not a one-to-one relationship between BIC and ABA routing numbers. In fact, there is no direct relationship.

ABA numbers do not have a one-to-one relationship with a US bank. Many banks start off with one ABA number. If money movements need to be more precise, banks normally create and use a new DDA number (think of a new check/cheque account). Due to bank mergers, larger banks may have multiple ABA numbers. Bank of America, for example has a site to help consumers track down which BoA ABA numbers are used in their market.

BIC's also do not appear to have a one-to-one relationship with any one international bank. I do not know from personal experience what happens to the BIC codes when two banks merge, but I would err on the side of caution when building your data model. A slightly stronger case for a many-to-one relationship: as noted in the Wikipedia article you cited, Bank of East Asia has more than one BIC code. It is also important to note that banks may often have one BIC with 8 characters, but it is very possible a bank may have many BIC's with 11 characters (where the added three characters are the branch code).

In sum, ABA and BIC accounts are both used to identify banks, but they are used on unrelated platforms that have nothing in common.

Is there a table with all US banks, their BIC/SWIFT number and their Routing numbers?

For the SWIFT site referenced by Heatonjb, above, you would need a SWIFT account to access the list of BIC's. The reason why it is so difficult to come across solid and properly cited information on the internet about SWIFT, SWIFT message types, BIC's and so on is because it is all proprietary. SWIFT technology is, unfortunately, maintained and owned by SWIFT, so retrieving a table of banks and their BIC's is extremely difficult to anyone who does not work for an organization that is a member of SWIFT (viz. a bank).

The other site referenced by Heatonjb looks a lot more promising, though I do not know enough about the Fedwire program to confirm that it is a pertinent or practical data source.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.