Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Global IBAN, BIC/SWIFT & Bank Routing Validator API — .NET / C# SDK

NuGet version License: MIT Stanza API

ISO 13616 MOD-97 IBAN checksum verification, ISO 9362 BIC/SWIFT validation, and national bank routing extraction across 87 countries.

Official high-performance .NET client library for Global IBAN, BIC/SWIFT & Bank Routing Validator API, built on the Stanza Micro-API Network. Fully compatible with .NET Standard 2.0, .NET 6.0, .NET 7.0, and .NET 8.0+.


📦 Installation

dotnet add package StanzaApi.IbanValidator

🚀 Quickstart

using System;
using System.Threading.Tasks;
using StanzaApi.IbanValidator;

class Program
{
    static async Task Main()
    {
        // Initialize client (reads STANZA_API_KEY from environment if not passed)
        var client = new IbanValidatorClient();

        // Perform deterministic verification
        string responseJson = await client.ValidateAsync("DE89370400440532013000");
        Console.WriteLine(responseJson);
    }
}

📄 Example Response

{
  "success": true,
  "data": {
    "valid": true,
    "iban": "DE89370400440532013000",
    "country_code": "DE",
    "bank_code": "37040044",
    "bic_candidate": "COBADEFFXXX"
  }
}

⚙️ Configuration

Pass options directly to the IbanValidatorClient constructor:

var client = new IbanValidatorClient(
    apiKey: "your_api_key_here",
    baseUrl: "https://api.stanzaapi.com/iban-validator"
);

🔗 Useful Links

📄 License

MIT © Stanza — Powered by Stanza.

Releases

Packages

Contributors

Languages