Skip to main content
API-Dokumentation

IBAN-Validierungs-API

Validieren Sie internationale Bankkontonummern (IBAN) mit Banksuche und Risikobewertung

POST /api/v1/iban
Funktionen
MOD-97-Prüfsummenvalidierung
Länderspezifische Längenvalidierung
Bankname und BIC/SWIFT-Suche
SEPA-Ländererkennung
Pro+
Risikobewertung (Pro+-Pläne)
Anfrage

Parameter

NameTypErforderlichBeschreibung
ibanstring
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 ist
iban.formatted: IBAN mit Leerzeichen formatiert
iban.raw: IBAN ohne Leerzeichen
country: Länderinformationen
bank: Bankinformationen (falls verfügbar)
checksum: Prüfsummen-Validierungsergebnis
Pro+
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.