Retrieve Bank Info

Retrieves the bank information by passing the routing number or SWIFT code.
Contacts
Retrieve Bank Info
 last updated: 
November 30, 2023

You can Retrieve a Bank information in two ways:
- Pass type=aba and the routingNumber=Bank's Routing Number (for Domestic US Banks)
- Pass type=swift and the routingNumber=SWIFT code (for International Banks)

Routing Number

ENDPOINT

  1. GET /v1/contact/bank?type=aba&routingNumber=021214189

RESPONSE

  1. {
  2.     "routingNumber": "021214189",
  3.     "bankName": "ConnectOne Bank",
  4.     "type": "aba",
  5.     "paymentMethods": [
  6.         "ach",
  7.         "wire"
  8.     ],
  9.     "address": {
  10.         "addressType": "bank",
  11.         "line1": "1365 Palisades Ave",
  12.         "line2": "",
  13.         "city": "Fort Lee",
  14.         "state": "NJ",
  15.         "country": "US",
  16.         "postalCode": "07024"
  17.     }
  18. }

Swift Number

ENDPOINT

  1. GET /v1/contact/bank?type=swift&routingNumber=AXISINBB227

RESPONSE

  1. {
  2.     "routingNumber": "AXISINBB227",
  3.     "bankName": "Axis Bank Ltd",
  4.     "type": "swift",
  5.     "paymentMethods": [
  6.         "wire"
  7.     ],
  8.     "address": {
  9.         "addressType": "bank",
  10.         "line1": "233, 2nd Main, Between 15th and 16t",
  11.         "line2": "Sampige Road, Malleswaram",
  12.         "city": "Bangalore",
  13.         "state": "Karnataka",
  14.         "country": "IN",
  15.         "postalCode": "560003"
  16.     }
  17. }