Attributes
| Attribute | Type | Definition | Example | 
|---|---|---|---|
| routing_code | String | routing code of the local financial system | A bank routing code of the local financial system. This only returned when given an iban | 
| swift_bic | String | SWIFT/BIC code of the bank | CITIUS33XXX | 
| bank_name | String | the name of the banking institution | Citibank | 
| bank_address1 | String | line 1 of the bank address | 11726 SAN VICENTE BLVD | 
| bank_address2 | String | line 2 of the bank address | Unit 10 | 
| bank_city | String | the city the bank is located | Los Angeles | 
| bank_state_province_region | String | the state, region, or province the bank resides in | California | 
| bank_postal_code | PostalCode | the postal code of the bank | 90049 | 
| bank_country | ISO3166_1! | the 2 character country code the bank resides in | US | 
| formatted_address | String | bank address with some line feeds | 11726 \ n SAN VICENTE \ nBLVD | 
| formatted_address_html | String | bank 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
}