Programming Services

If you need a project built related to the finance industry, give us a call: 1-253-304-8369

We can help you integrate into a processor, build tools to handle re-occurring transactions or any topic where e-commerce might be involved.

Code sample to pull bank names and/or validate routing numbers in your PHP code:

public function getbankinfo($routenumber){

$bankname = file_get_contents("https://www.routingnumbers.info/api/data.json?
rn=".$routenumber);
$name = preg_split("/customer_name/",$bankname);
$bank = preg_split("/:/",$name[1]);
$newbankname = preg_split("/,/",$bank[1]);
return preg_replace("/\"/","",$newbankname[0]);

}