Get bank name from route number

Googling for an array of common routing numbers and their names in a bank in the USA pulls out the entire list of spam sites. Can someone tell me where I could find such an array or better yet a javascript / jquery plugin that handles routing number parsing?

I know that Stripe should at least have this list because they tell me the name of my bank when I give them my route number during the OAuth protocol.

If I can’t get this list, I think Stripe should have a special permission (?), Which seems strange to me, since these numbers are the same for everyone who uses each bank.

No matter what, the deal with the lack of information is here?

+6
source share
1 answer

The list is available here: https://www.fededirectory.frb.org/FedACHdir.txt ( link to link )

Even better, routingnumbers.info has an API that allows you to access it as follows:

https://www.routingnumbers.info/api/data.json?rn=xxxxxxxxxx 

It returns a JSON object, where customer_name is the name of the bank.

+24
source

Source: https://habr.com/ru/post/953648/


All Articles