Project

bigbrother

0.0
No commit activity in last 3 years
No release in over 3 years
This information is usually hard to find. I've included a relatively up-to-date CSV that contains all routing numbers and information for each bank.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

ABA

ABA is an Elixir library for performing validation and lookups on ABA routing numbers. It stores all routing numbers and bank information in an ETS table. Therefore, you should initialize the application in a supervision tree.

Full docs here: https://hexdocs.pm/aba/index.html

Installation

Add aba to your list of dependencies in mix.exs:

def deps do
  [
    {:aba, "~> 0.3"}
  ]
end

Usage

To perform routing number validation without an ETS table lookup:

iex> ABA.routing_number_valid?("111900659")
true

Otherwise, performing lookups can be done with

iex> ABA.get_bank("111900659")
{:ok, %ABA.Bank{routing_number: "111900659", name: "WELLS FARGO BANK",
                       address: "255 2ND AVE SOUTH", city: "MINNEAPOLIS",
                       state: "MN", zip: "55479"}}