国際IBAN検証
IBANの構造とチェックサムを検証し、国、SEPA、銀行、BIC、口座構造を返します。
20 コイン/回
オンライン試用
コード不要、ブラウザから本物のリクエストを送信
導入ドキュメント
国際IBAN検証
IBANの構造とチェックサムを検証し、国、SEPA、銀行、BIC、口座構造を返します。
Endpoint
POST /v1/iban-validation
Authentication
Use a ToolKK OpenAPI AppKey. APILayer credentials stay on the ToolKK provider gateway.
Billing
A successful call costs 20 coins.
Errors
Invalid input, quota exhaustion, authentication faults, and temporary provider failures return normalized error codes and messages.
実装サンプルコード
Shell、Python、Go、Java、PHP の呼び出し例をまとめ、既存プロジェクトに組み込みやすくしています。
リクエスト例
{
"iban_number": "DE89370400440532013000"
}レスポンス例
{
"code": "SUCCESS",
"message": "success",
"data": {
"valid": true,
"iban": "DE89370400440532013000",
"country": "Germany",
"country_code": "DE",
"sepa_country": true,
"bank_name": "Commerzbank",
"bic": "COBADEFFXXX"
}
}リクエスト項目
以下の項目はサンプル JSON から自動抽出した参考情報です。
| パス | 型 | サンプル値 |
|---|---|---|
| iban_number | string | DE89370400440532013000 |
レスポンス項目
以下の項目はサンプル JSON から自動抽出した参考情報です。
| パス | 型 | サンプル値 |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.valid | boolean | true |
| data.iban | string | DE89370400440532013000 |
| data.country | string | Germany |
| data.country_code | string | DE |
| data.sepa_country |