Soenneker.Instantly.Verification 4.0.1784

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Instantly.Verification --version 4.0.1784
                    
NuGet\Install-Package Soenneker.Instantly.Verification -Version 4.0.1784
                    
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.1784" />
                    
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.1784" />
                    
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.1784
                    
#r "nuget: Soenneker.Instantly.Verification, 4.0.1784"
                    
#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.1784
                    
#: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.1784
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Instantly.Verification&version=4.0.1784
                    
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.1801 67 9/18/2026
4.0.1800 92 9/17/2026
4.0.1799 78 9/17/2026
4.0.1798 84 9/16/2026
4.0.1797 82 9/16/2026
4.0.1796 85 9/16/2026
4.0.1795 91 9/15/2026
4.0.1794 191 9/13/2026
4.0.1793 141 9/13/2026
4.0.1792 121 9/12/2026
4.0.1790 165 9/12/2026
4.0.1789 151 9/10/2026
4.0.1788 101 9/10/2026
4.0.1787 110 9/9/2026
4.0.1786 96 9/9/2026
4.0.1785 173 9/9/2026
4.0.1784 141 9/8/2026
4.0.1783 148 9/8/2026
4.0.1782 186 9/8/2026
4.0.1781 99 9/8/2026
Loading failed

Updated Soenneker.Instantly.ClientUtil to 4.0.641