Soenneker.ElevenLabs.OpenApiClientUtil 4.0.196

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

Soenneker.ElevenLabs.OpenApiClientUtil

Provides lazy, cached access to the generated ElevenLabs API client.

Installation

dotnet add package Soenneker.ElevenLabs.OpenApiClientUtil

Configure and register

{
  "ElevenLabs": {
    "ApiKey": "your-api-key"
  }
}
using Soenneker.ElevenLabs.OpenApiClientUtil.Registrars;

services.AddElevenLabsOpenApiClientUtilAsScoped();

Use the client

using Soenneker.ElevenLabs.OpenApiClientUtil.Abstract;

public sealed class VoiceReader(IElevenLabsOpenApiClientUtil clients)
{
    public async Task Read(CancellationToken cancellationToken)
    {
        var client = await clients.Get(cancellationToken);
        var response = await client.V1.Voices.GetAsync(
            cancellationToken: cancellationToken);
    }
}

The first call to Get() creates the generated client; later calls on the same utility instance return it from the cache. The HTTP provider applies the xi-api-key header, so the generated client does not add a second authentication header.

Use AddElevenLabsOpenApiClientUtilAsSingleton() when the application should share one generated client. A scoped utility borrows the singleton HTTP provider; disposing the scope releases the utility without destroying the shared transport.

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.196 0 9/12/2026
4.0.195 0 9/12/2026
4.0.194 46 9/10/2026
4.0.193 42 9/9/2026
4.0.192 43 9/9/2026
4.0.191 45 9/8/2026
4.0.190 40 9/8/2026
4.0.189 54 9/8/2026
4.0.188 55 9/8/2026
4.0.187 71 9/7/2026
4.0.186 86 9/7/2026
4.0.185 97 9/7/2026
4.0.184 100 9/5/2026
4.0.183 102 9/4/2026
4.0.182 107 9/4/2026
4.0.181 92 9/4/2026
4.0.180 97 9/4/2026
4.0.179 98 9/4/2026
4.0.178 106 9/4/2026
4.0.177 101 9/4/2026
Loading failed