Apyflux Logo

Apyflux

Menu
ProjectIcon

Routing Number Bank Lookup

Input an ABA routing number and get details about the bank that routing number belongs to

Payment Processing

By Michael Cogan

Subscribe
0.00 ms
icon
Latency
100%
icon
Availability
0 Reqs
icon
Usage
No reviews
icon
Rating
Project Details
Pricing
Endpoint
Discussions
Reviews
Articles
Test

Project Details

How to use this API!

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):

  • format
  • paymentType
    • Accepted values: ach, wire, all
    • Default value: ach
    • Description: if you don't put this, it will default to ACH. Bank information is a little different depending on whether you're trying to use the ACH system or the Wire Transfer system. You define what you want here. For example, if you need the Wire Transfer information, you'd add the query param into the url like this https://gateway.apyflux.com/api/v1/121000248?paymentType=wire. Generally ACH info is the most common, so if you don't know what any of this stuff means just leave this blank and let it default to ACH. You may also get both ACH and Wire information at the same time by passing paymentType=all

Let's look at some full examples!

I want the ACH info for the routing number 121000248 and I want it in XML format:

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>

I want the Wire Transfer info for the routing number 121000248 and I want it in JSON format:

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"
        }
    }
]

I want both ACH and Wire Transfer info for the routing number 121000248 and I want it in JSON format:

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"
        }
    }
]

Similar APIs

Apyflux Logo

Apyflux

Unleashing the potential by connecting developers to a world of powerful APIs.
Secured Payments By
RazorPay Logo
  • Visa_Logo
  • Mastercard_Logo
  • Amex_Logo
  • Maestro_Logo
  • Rupay_Logo
  • UPI_Logo_Small
© 2025 Apyflux. All rights reserved.