API のメリット
IBAN検証
50以上の国でフォーマットとチェックサム検証。
BICサポート
BIC検証と銀行情報。
グローバルカバレッジ
欧州、アジア、アフリカ、米州。
フォーマット検証
国別の構造と長さを検証。
チェックサム検証
データ整合性のためのchecksumアルゴリズム。
超高速
100ms未満、99.9% SLA。
主な機能
IBAN format validation
BIC code validation
50+ countries supported
Checksum verification
Country-specific validation
Account type detection
Currency identification
Structure validation
Example generation
Error detection
Bulk validation
JSON response format
クイックスタート
1. API キーを取得
無料登録ですぐにキーを取得。
2. 最初のリクエスト
curl -X GET \ "https://bankvalidation.cleariflow.com/v1/iban/" \ ?api_key=b160926fe507001a26c0723ec8c72551 \ &iban=DE89370400440532013000
3. 応答を処理
{
"iban": "DE89370400440532013000",
"is_valid": true,
"country_code": "DE",
"country_name": "Germany",
"bank_code": "37040044",
"account_number": "0532013000",
"length": 22,
"expected_length": 22,
"checksum_valid": true,
"format_valid": true,
"details": {
"structure": "BBBB BBBB BBBB BBBB BB",
"example": "DE89 3704 0044 0532 0130 00",
"bank_name": "Bank information not available",
"bank_bic": "BIC not available",
"account_type": "Bank Account",
"currency": "EUR"
}
}