API-Dokumentation
IBAN-Validierungs-API
Validieren Sie internationale Bankkontonummern (IBAN) mit Banksuche und Risikobewertung
POST /api/v1/ibanFunktionen
MOD-97-Prüfsummenvalidierung
Länderspezifische Längenvalidierung
Bankname und BIC/SWIFT-Suche
SEPA-Ländererkennung
Pro+
Risikobewertung (Pro+-Pläne)Anfrage
Parameter
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
iban | string | Yes | Die zu validierende IBAN (15-34 Zeichen) |
Beispiel
curl -X POST https://verifydest.io/api/v1/iban \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"iban": "IT60X0542811101000000123456"}'Antwort
Antwortfelder
valid: Ob die IBAN gültig istiban.formatted: IBAN mit Leerzeichen formatiertiban.raw: IBAN ohne Leerzeichencountry: Länderinformationenbank: Bankinformationen (falls verfügbar)checksum: Prüfsummen-ValidierungsergebnisPro+
risk: Risikobewertung (Pro+-Pläne)Beispiel Response
{
"success": true,
"data": {
"valid": true,
"iban": {
"formatted": "IT60 X054 2811 1010 0000 0123 456",
"raw": "IT60X0542811101000000123456"
},
"country": {
"code": "IT",
"name": "Italy",
"isSepa": true
},
"checksum": {
"valid": true
},
"length": {
"actual": 27,
"expected": 27,
"valid": true
},
"bank": {
"name": "Banca Popolare di Bari",
"bic": "BPBAIT3B"
},
"risk": {
"score": 15,
"level": "LOW",
"flags": [],
"countryRisk": "low"
}
},
"timestamp": "2025-06-24T10:30:00.000Z"
}Ausprobieren
To test the API, create an API key in the dashboard and use the examples above.