IDAnalyzerV2 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package IDAnalyzerV2 --version 1.2.0
                    
NuGet\Install-Package IDAnalyzerV2 -Version 1.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IDAnalyzerV2" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IDAnalyzerV2" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="IDAnalyzerV2" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IDAnalyzerV2 --version 1.2.0
                    
#r "nuget: IDAnalyzerV2, 1.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package IDAnalyzerV2@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IDAnalyzerV2&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=IDAnalyzerV2&version=1.2.0
                    
Install as a Cake Tool

ID Analyzer .NET SDK (API v2)

.NET client library for the ID Analyzer API v2 — worldwide passport, driver license and ID card scanning, biometric face/liveness verification, AML/PEP screening, DocuPass remote verification & e-signature, KYC profile management and contract generation.

This is the API v2 SDK, published as IDAnalyzerV2. The legacy IDAnalyzer package id remains the API v1 SDK.

Installation

dotnet add package IDAnalyzerV2

Base URL / Region

Defaults to the US endpoint (https://api2.idanalyzer.com). Set the environment variable IDANALYZER_REGION=eu to use the EU endpoint (https://api2-eu.idanalyzer.com). An unrecognized value throws InvalidArgumentException.

Quick start

using IDAnalyzer;

var p = new Profile(Profile.SECURITY_MEDIUM);
var s = new Scanner("YOUR_API_KEY");
s.throwApiException(true);
s.setProfile(p);
var result = s.scan("id_front.jpg");
Console.WriteLine(result);

Coverage

Scanner (scan / quickScan / veryQuickScan), Biometric (verifyFace / verifyLiveness), AML (search / searchV3), KYB (verify), Contract (generate + template CRUD), Transaction (get / list / update / delete / export / saveImage / saveFile), Docupass (create / list / get / delete), ProfileAPI (KYC profile CRUD + export), Webhook (list / resend / delete), Account (getAccount).

Full examples and reference: https://github.com/idanalyzer/id-analyzer-v2-dotnet

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 was computed.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.3.0 54 6/18/2026
1.2.0 52 6/18/2026
1.1.3 95 6/3/2026
1.1.2 94 6/3/2026
1.0.0 292 1/6/2025

1.2.0 — add KYB (Know Your Business) verification (KYB.verify, POST /kyb).

1.1.3 — ship XML doc comments (IntelliSense) + completed inline API docs; README links the generated reference.

1.1.2

Added package icon. No functional changes.

1.1.0
Full API v2 surface parity (veryquickscan, aml, amlv3, KYC profile CRUD, webhook management, account, single-docupass get).
Base URL now defaults to api2.idanalyzer.com; unknown IDANALYZER_REGION now throws.
Fixed updateTransaction decision validation and Profile.webhook protocol guard.