Skip to main content

Validate a routing number

GET 

/v1/payments/validate/routing/:routingNumber

Validates a US ABA routing number and returns bank information if valid.

  • Validates format (must be 9 digits)
  • Looks up bank information from the Federal Reserve database
  • Returns bank name, address, city, state, and ZIP code

Request

Path Parameters

    routingNumber stringrequired

    The 9-digit US ABA routing number to validate

Responses

Routing number is valid. Returns bank information.

Schema

    routingNumber stringrequired

    The routing number that was validated

    bankName stringrequired

    Name of the bank

    address stringrequired

    Bank address

    city stringrequired

    City where the bank is located

    state stringrequired

    State where the bank is located

    zipCode stringrequired

    ZIP code of the bank

    phoneNumber string

    Phone number of the bank

Loading...