Schema

Attributes

AttributeTypeDefinitionExample
routing_codeStringrouting code of the local financial systemA bank routing code of the local financial system. This only returned when given an iban
swift_bicStringSWIFT/BIC code of the bankCITIUS33XXX
bank_nameStringthe name of the banking institutionCitibank
bank_address1Stringline 1 of the bank address11726 SAN VICENTE BLVD
bank_address2Stringline 2 of the bank addressUnit 10
bank_cityStringthe city the bank is locatedLos Angeles
bank_state_province_regionStringthe state, region, or province the bank resides inCalifornia
bank_postal_codePostalCodethe postal code of the bank90049
bank_countryISO3166_1!the 2 character country code the bank resides inUS
formatted_addressStringbank address with some line feeds11726\n SAN VICENTE \nBLVD
formatted_address_htmlStringbank address in html format
11726 SAN VICENTE BLVD

GraphQL


type FindBankResponse {
  routing_code: String
  swift_bic: SwiftBic
  bank_name: String
  bank_address1: String
  bank_address2: String
  bank_city: String
  bank_state_province_region: String
  bank_postal_code: PostalCode
  bank_country: ISO3166_1
  formatted_address: String
  formatted_address_html: String
}

type Query {
  findBank (
    swift_bic: SwiftBic
    iban: String
    clabe: CLABE
    routing_code: BankRoutingCode
    country: ISO3166_1
    address: String
  ): FindBankResponse
}