Soenneker.N8n.OpenApiClientUtil 4.0.162

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

Creates and caches authenticated n8n API clients for one or more n8n servers.

Installation

dotnet add package Soenneker.N8n.OpenApiClientUtil

Configuration

{
  "N8n": {
    "ApiKey": "your-api-key",
    "ClientBaseUrl": "https://n8n.example.com/api/v1"
  }
}

Usage

using Soenneker.N8n.OpenApiClientUtil.Abstract;
using Soenneker.N8n.OpenApiClientUtil.Registrars;

services.AddN8nOpenApiClientUtilAsSingleton();

IN8nOpenApiClientUtil n8n = serviceProvider
    .GetRequiredService<IN8nOpenApiClientUtil>();

var client = await n8n.Get(cancellationToken);
var workflows = await client.Workflows.GetAsync(cancellationToken: cancellationToken);

Use Get(apiKey, baseUrl) for another n8n server. Equivalent connection settings reuse the same generated client within the utility's lifetime.

Scoped registration creates a generated-client cache per application scope while retaining the shared HTTP provider. Disposing the scoped utility does not remove that shared provider or its clients.

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

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
4.0.162 67 9/10/2026
4.0.161 85 9/9/2026
4.0.160 83 9/8/2026
4.0.159 68 9/8/2026
4.0.158 82 9/8/2026
4.0.157 82 9/8/2026
4.0.156 80 9/8/2026
4.0.155 78 9/8/2026
4.0.154 91 9/7/2026
4.0.153 88 9/7/2026
4.0.152 105 9/6/2026
4.0.151 81 9/5/2026
4.0.150 82 9/4/2026
4.0.149 83 9/4/2026
4.0.148 78 9/4/2026
4.0.147 82 9/4/2026
4.0.146 83 9/4/2026
4.0.145 80 9/4/2026
4.0.144 96 9/4/2026
4.0.143 86 9/4/2026
Loading failed