GET
/
routing_numbers
/
{routing_number}
/
info
curl --request GET \
  --url https://api.useswift.dev/routing_numbers/{routing_number}/info \
  --header 'Authorization: Bearer <token>'
{
  "financial_institution": "Bank of America",
  "is_rtp_enabled": true,
  "is_rtp_rfp_enabled": true
}

Retrieves info on the capabilities of this routing number to receive RTP credit transfers and RTP RfPs.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

routing_number
string
required

The nine-digit ABA routing number to lookup.

Response

200
application/json
Routing Number Info

Information and capabilities for a given routing number

financial_institution
string | null
required

The name of the financial institution that the routing number belongs to.

is_rtp_enabled
boolean
required

Whether the routing number supports receiving Real-time Payments Credit Transfers.

is_rtp_rfp_enabled
boolean
required

Whether the routing number supports receiving Real-time Payments Requests for Payments.