Validate IBAN

Validate an IBAN and return bank information. Used by the hosted payment page for real-time bank name confirmation. Requires authentication: API key (Bearer rk_xxx) or session token (Bearer ps_xxx).

Rate limit: 50 requests/second per API key (iban_validate scope)

Body
required
  • iban
    Type: string
    min length:  
    1
    required

    IBAN to validate

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/api/v1/iban-validate/
curl /api/v1/iban-validate/ \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "iban": "DE89370400440532013000"
}'
{
  "valid": true,
  "bank_name": "Commerzbank",
  "bic": "COBADEFFXXX"
}