Routing Number Bank Lookup

FREEMIUM
By Michael Cogan | Updated hace un día | Finance
Popularity

9.7 / 10

Latency

116ms

Service Level

100%

Health Check

100%

Back to All Tutorials (1)

Basic Use and Examples

How to use this API!

**Request Type: ** GET
URL: https://routing-number-bank-lookup.p.rapidapi.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://routing-number-bank-lookup.p.rapidapi.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

So 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://routing-number-bank-lookup.p.rapidapi.com/api/v1/121000248?paymentType=ach&format=xml
Response:
<bankInfo>
 <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>
</bankInfo>

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

Request: GET https://routing-number-bank-lookup.p.rapidapi.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://routing-number-bank-lookup.p.rapidapi.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”
  }
 }
]