Finturest.Iban
1.0.0
dotnet add package Finturest.Iban --version 1.0.0
NuGet\Install-Package Finturest.Iban -Version 1.0.0
<PackageReference Include="Finturest.Iban" Version="1.0.0" />
<PackageVersion Include="Finturest.Iban" Version="1.0.0" />
<PackageReference Include="Finturest.Iban" />
paket add Finturest.Iban --version 1.0.0
#r "nuget: Finturest.Iban, 1.0.0"
#addin nuget:?package=Finturest.Iban&version=1.0.0
#tool nuget:?package=Finturest.Iban&version=1.0.0
Finturest IBAN API C# SDK
Official C# SDK for the Finturest IBAN API - supports .NET Standard 2.0+ and all modern .NET versions.
Overview
This SDK provides a fast and secure way to integrate Finturest IBAN validation, generation, and bank data lookup into your .NET applications. It supports .NET Standard 2.0 and later, ensuring compatibility with .NET Core and the latest .NET releases.
Features
IBAN Format Validation: Validates IBAN structure based on official formats for 100+ countries.
IBAN Generation: Dynamically generates valid IBANs using country-specific rules, given bank and account identifiers.
Checksum Verification: Performs MOD-97 checksum validation to ensure IBAN authenticity.
SEPA & Non-SEPA Coverage: Supports both SEPA and international IBANs for broad banking network compatibility.
Real-Time Response: Get accurate validation, generation, and bank metadata in milliseconds for streamlined financial operations.
Installation
Using the .NET Core command-line interface (CLI) tools:
dotnet add package Finturest.Iban
Using the NuGet Command Line Interface (CLI):
nuget install Finturest.Iban
Using the Package Manager Console:
Install-Package Finturest.Iban
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "Finturest.Iban".
- Click on the Finturest.Iban package, select the appropriate version in the right-tab and click Install.
Usage
Registering
To use the Finturest.Iban
client, register it in your application's dependency injection container using AddFinturestIban
. This configures the services required to communicate with the Finturest IBAN API.
var services = new ServiceCollection();
services.AddFinturestIban(options =>
{
options.ApiKey = "YOUR_API_KEY";
});
Note
IIbanServiceClient
is registered in the DI container and should be resolved via dependency injection.
In ASP.NET Core applications, it's recommended to inject it through constructor injection.
Note
The abstractions for the Finturest Iban API client are provided in a separate package namedFinturest.Iban.Abstractions
.
You can reference this package in your business layer to avoid a tight dependency on the implementation.
Only the root application or composition root should reference the fullFinturest.Iban
package that contains the implementation.
Validating
To validate an IBAN using the Finturest IBAN API, create a ValidateIbanRequestModel
and call the ValidateIbanRequestModel
method on the IIbanServiceClient
.
var serviceProvider = services.BuildServiceProvider();
var ibanServiceClient = serviceProvider.GetRequiredService<IIbanServiceClient>();
try
{
var request = new ValidateIbanRequestModel
{
Iban = "FR7630006000011234567890189"
};
var result = await ibanServiceClient.ValidateIbanAsync(request);
Console.WriteLine("IBAN is valid.");
}
catch (IbanException exception)
{
Console.WriteLine("IBAN is invalid.");
}
Note
In production applications, avoid usingBuildServiceProvider()
manually.
Instead, use constructor injection to getIIbanServiceClient
from the framework’s dependency injection system.
Generating
To generate an IBAN using the Finturest IBAN API, create a GenerateIbanRequestModel
and call the GenerateIbanAsync
method on the IIbanServiceClient
.
try
{
var request = new GenerateIbanRequestModel
{
CountryCode = "FR",
BankIdentifier = "30006",
BranchIdentifier = "00001",
BankAccountNumber = "1234567890189"
};
var result = await ibanServiceClient.GenerateIbanAsync(request);
Console.WriteLine($"IBAN: {result.Iban}"); // IBAN: FR7630006000011234567890189
}
catch (IbanException exception)
{
Console.WriteLine("Invalid parameters.");
}
Subscription & Pricing
To get access to the Finturest IBAN API or subscribe to a plan, please visit the subscription page. An active subscription is required to access the API in production.
API Key Generation
An API key is required to use the SDK and can be generated on your Finturest dashboard:
Documentation
For full API reference and usage guides, please visit the official Finturest IBAN API documentation:
Contact
For support, questions, or inquiries, please contact us at: support@finturest.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 3.1.32)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 3.1.32)
- System.Net.Http.Json (>= 3.2.1)
-
.NETStandard 2.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 3.1.32)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 3.1.32)
- System.Net.Http.Json (>= 3.2.1)
-
net5.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 5.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 5.0.0)
- System.Net.Http.Json (>= 5.0.0)
-
net6.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 6.0.1)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.1)
- System.Net.Http.Json (>= 6.0.2)
-
net7.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 7.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 7.0.0)
- System.Net.Http.Json (>= 7.0.1)
-
net8.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 8.0.1)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
- System.Net.Http.Json (>= 8.0.1)
-
net9.0
- Finturest.Iban.Abstractions (>= 1.0.0)
- Microsoft.Extensions.Http (>= 9.0.5)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.5)
- System.Net.Http.Json (>= 9.0.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 129 | 5/18/2025 |