Validate an IBAN
GET/v1/payments/validate/iban/:iban
Validates an International Bank Account Number (IBAN).
- Validates format and checksum according to ISO 13616-1
- Returns validity status and bank information if available
Request
Path Parameters
iban stringrequired
The IBAN to validate
Responses
- 200
- 404
IBAN validation result with bank information if available.
- application/json
- Schema
- Example (from schema)
Schema
iban stringrequired
The IBAN that was validated
valid booleanrequired
Whether the IBAN is valid
bankName string
Name of the bank (if available)
country string
Country of the IBAN
{
"iban": "DE89370400440532013000",
"valid": true,
"bankName": "Commerzbank",
"country": "Germany"
}
IBAN is invalid.
Loading...