Links

Verify Routing Number

post
https://api.synapsefi.com
/v3.1/routing-number-verification
Verify Routing Number

Example Request

HTTP
Python
JavaScript
Ruby
PHP
Go
{
"routing_num": "084008426",
"type": "ACH-US"
}
import http.client
conn = http.client.HTTPConnection("uat-api,synapsefi,com")
payload = "{\n \"routing_num\": \"084008426\",\n \"type\": \"ACH-US\"\n}"
headers = {
'Content-Type': "application/json",
'cache-control': "no-cache",
'Postman-Token': "594f9722-a7e4-402e-8aaf-770646c3ad01"
}
conn.request("POST", "v3.1,routing-number-verification", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
//
//
//
//