Soenneker.Instantly.Analytics 4.0.1590

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Instantly.Analytics --version 4.0.1590
                    
NuGet\Install-Package Soenneker.Instantly.Analytics -Version 4.0.1590
                    
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.Analytics" Version="4.0.1590" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Instantly.Analytics" Version="4.0.1590" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Instantly.Analytics" />
                    
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.Analytics --version 4.0.1590
                    
#r "nuget: Soenneker.Instantly.Analytics, 4.0.1590"
                    
#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.Analytics@4.0.1590
                    
#: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.Analytics&version=4.0.1590
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Instantly.Analytics&version=4.0.1590
                    
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.Analytics

Retrieve campaign metrics for one campaign or the entire Instantly workspace, plus a campaign overview.

Install

dotnet add package Soenneker.Instantly.Analytics

Configure and register

{
  "Instantly": {
    "ApiKey": "<API key>"
  }
}
using Soenneker.Instantly.Analytics.Registrars;

services.AddInstantlyAnalyticsUtilAsScoped();

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

Campaign metrics

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

GetCampaignAnalytics200ResponseSchemaItem? metrics =
    await analytics.GetCampaignCount(
        campaignId,
        startAt: new DateTimeOffset(2026, 8, 1, 0, 0, 0, TimeSpan.Zero),
        endAt: new DateTimeOffset(2026, 8, 31, 0, 0, 0, TimeSpan.Zero),
        cancellationToken: cancellationToken);

Dates are sent as yyyy-MM-dd. GetCampaignCount returns the first analytics row for the requested campaign, or null when the API returns no rows.

All campaign metrics

List<GetCampaignAnalytics200ResponseSchemaItem>? metrics =
    await analytics.GetCampaignsCounts(
        startAt,
        endAt,
        cancellationToken);

Omit endAt to let Instantly use its current-date behavior.

Campaign overview

GetCampaignAnalyticsOverview200Response? overview =
    await analytics.GetCampaignSummary(
        campaignId,
        cancellationToken);

API and deserialization failures are surfaced to the caller; nullable results indicate that Instantly returned no response body or no analytics row.

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.Analytics:

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.1597 0 9/3/2026
4.0.1596 45 9/2/2026
4.0.1595 83 9/1/2026
4.0.1594 84 9/1/2026
4.0.1593 92 8/31/2026
4.0.1592 109 8/31/2026
4.0.1591 82 8/31/2026
4.0.1590 87 8/31/2026
4.0.1589 111 8/31/2026
4.0.1588 83 8/31/2026
4.0.1587 88 8/30/2026
4.0.1586 141 8/30/2026
4.0.1585 77 8/30/2026
4.0.1584 112 8/29/2026
4.0.1583 107 8/28/2026
4.0.1582 130 8/26/2026
4.0.1581 105 8/26/2026
4.0.1580 121 8/25/2026
4.0.1579 112 8/22/2026
4.0.1578 137 8/22/2026
Loading failed

Updated NuGet packages