Skip to main content
POST
/
v1
/
recipients
/
validate
/
routing
/
us
Validate US Routing Number
curl --request POST \
  --url https://api.chessa.ai/v1/recipients/validate/routing/us \
  --header 'Content-Type: application/json' \
  --data '
{
  "routingNumber": "021000021"
}
'
{
  "bankName": "JPMorgan Chase Bank",
  "city": "New York",
  "routingNumber": "021000021",
  "state": "NY",
  "valid": true
}

Headers

x-client-id
string
Example:

""

x-client-secret
string
Example:

""

Body

application/json
routingNumber
string
Example:

"021000021"

Response

Success Response

bankName
string
Example:

"JPMorgan Chase Bank"

city
string
Example:

"New York"

routingNumber
string
Example:

"021000021"

state
string
Example:

"NY"

valid
boolean
Example:

true