Input an ABA routing number and get details about the bank that routing number belongs to
Request Type: GET
URL: https://gateway.apyflux.com/api/v1/ROUTING_NUMBER_HERE replace the ROUTING_NUMBER_HERE with the routing number you want to lookup
Parameters (all optional, not case sensitive):
Request: GET https://gateway.apyflux.com/api/v1/121000248?paymentType=ach&format=xml
Response:
<response>
<status>success</status>
<data>
<routingNumber>121000248</routingNumber>
<paymentType>ach</paymentType>
<name>Wells Fargo Bank, Na</name>
<addressFull>255 2nd Ave South, Minneapolis, MN 55479</addressFull>
<street>255 2nd Ave South</street>
<city>Minneapolis</city>
<state>MN</state>
<zip>55479</zip>
<phone>800-745-2426</phone>
<active>Active</active>
<lastUpdated>Mar 25, 2024</lastUpdated>
</data>
</response>
Request: GET https://gateway.apyflux.com/api/v1/121000248?paymentType=wire&format=json
Response:
[
{
"status": "success",
"data": {
"routingNumber": "121000248",
"paymentType": "wire",
"name": "Wells Fargo Bank, Na",
"telegraphicName": "WELLS FARGO NA",
"location": "San Francisco, CA",
"city": "San Francisco",
"state": "CA",
"fundsTransferEligible": "Eligible",
"bookEntrySecuritiesTransferEligible": "Eligible",
"lastUpdated": "Mar 25, 2024"
}
}
]
Request: GET https://gateway.apyflux.com/api/v1/121000248?paymentType=all
Response:
[
{
"status": "success",
"achData": {
"routingNumber": "121000248",
"paymentType": "ach",
"name": "Wells Fargo Bank, Na",
"addressFull": "255 2nd Ave South, Minneapolis, MN 55479",
"street": "255 2nd Ave South",
"city": "Minneapolis",
"state": "MN",
"zip": "55479",
"phone": "800-745-2426",
"active": "Active",
"lastUpdated": "Mar 25, 2024"
},
"wireData": {
"routingNumber": "121000248",
"paymentType": "wire",
"name": "Wells Fargo Bank, Na",
"telegraphicName": "WELLS FARGO NA",
"location": "San Francisco, CA",
"city": "San Francisco",
"state": "CA",
"fundsTransferEligible": "Eligible",
"bookEntrySecuritiesTransferEligible": "Eligible",
"lastUpdated": "Mar 25, 2024"
}
}
]