Soenneker.Instantly.Verification 4.0.1808

Prefix Reserved
dotnet add package Soenneker.Instantly.Verification --version 4.0.1808
                    
NuGet\Install-Package Soenneker.Instantly.Verification -Version 4.0.1808
                    
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="Soenneker.Instantly.Verification" Version="4.0.1808" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Instantly.Verification" Version="4.0.1808" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Instantly.Verification" />
                    
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 Soenneker.Instantly.Verification --version 4.0.1808
                    
#r "nuget: Soenneker.Instantly.Verification, 4.0.1808"
                    
#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 Soenneker.Instantly.Verification@4.0.1808
                    
#: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=Soenneker.Instantly.Verification&version=4.0.1808
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Instantly.Verification&version=4.0.1808
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Instantly.Verification

Start Instantly email-verification jobs with webhook delivery and retrieve results by email address.

Install

dotnet add package Soenneker.Instantly.Verification

Configure and register

{
  "Instantly": {
    "ApiKey": "<API key>",
    "LogEnabled": false
  }
}
using Soenneker.Instantly.Verification.Registrars;

services.AddInstantlyVerificationUtilAsScoped();

The scoped verification service deliberately uses the singleton generated-client provider. Use AddInstantlyVerificationUtilAsSingleton() when the operation layer should also live for the application lifetime.

Start verification

using Soenneker.Instantly.OpenApiClient.Models;
using Soenneker.Instantly.Verification.Abstract;

EmailVerification? verification = await verifier.Verify(
    "person@example.com",
    "https://example.com/webhooks/instantly-verification",
    cancellationToken);

The webhook URL must be reachable by Instantly. Verification may initially be Pending; webhook delivery avoids polling when processing takes longer.

Retrieve a result

EmailVerification? result = await verifier.GetResult(
    "person@example.com",
    cancellationToken);

Instantly retains a verification result for a limited period. Inspect result.Status for request success and result.VerificationStatus for Pending, Verified, or Invalid.

When Instantly:LogEnabled is true, the service logs email addresses and verification outcomes. Leave it disabled when those addresses should not appear in application logs.

API failures are surfaced to the caller. Nullable results indicate that Instantly returned no response body or no available result.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Instantly.Verification:

Package Downloads
Soenneker.Instantly.Suite

Registers Instantly account, analytics, DFY, lead, Unibox, and email-verification operations together

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1808 0 9/27/2026
4.0.1807 55 9/26/2026
4.0.1806 43 9/26/2026
4.0.1805 60 9/25/2026
4.0.1804 46 9/25/2026
4.0.1803 75 9/24/2026
4.0.1802 78 9/24/2026
4.0.1801 300 9/18/2026
4.0.1800 120 9/17/2026
4.0.1799 98 9/17/2026
4.0.1798 103 9/16/2026
4.0.1797 102 9/16/2026
4.0.1796 104 9/16/2026
4.0.1795 113 9/15/2026
4.0.1794 200 9/13/2026
4.0.1793 148 9/13/2026
4.0.1792 126 9/12/2026
4.0.1790 173 9/12/2026
4.0.1789 154 9/10/2026
4.0.1788 108 9/10/2026
Loading failed

Updated Soenneker.Instantly.ClientUtil to 4.0.677