Soenneker.ElevenLabs.HttpClients 4.0.94

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

Provides a cached HttpClient configured for ElevenLabs authentication and API requests.

Installation

dotnet add package Soenneker.ElevenLabs.HttpClients

Configuration

{
  "ElevenLabs": {
    "ApiKey": "your-api-key"
  }
}

Requests use the xi-api-key header and https://api.elevenlabs.io/ by default. ElevenLabs:AuthHeaderName, ElevenLabs:AuthHeaderValueTemplate, and ElevenLabs:ClientBaseUrl can override those values when needed.

Registration and usage

using Soenneker.ElevenLabs.HttpClients.Abstract;
using Soenneker.ElevenLabs.HttpClients.Registrars;

services.AddElevenLabsOpenApiHttpClientAsSingleton();

public sealed class ElevenLabsRequestSender(IElevenLabsOpenApiHttpClient clients)
{
    public async Task<HttpResponseMessage> GetVoices(CancellationToken cancellationToken)
    {
        HttpClient client = await clients.Get(cancellationToken);
        return await client.GetAsync("v1/voices", cancellationToken);
    }
}

Use the scoped registration only when each scope must own a separate client. Each provider instance owns its cache entry and removes that client when disposed.

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.ElevenLabs.HttpClients:

Package Downloads
Soenneker.ElevenLabs.OpenApiClientUtil

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.112 74 9/9/2026
4.0.111 79 9/9/2026
4.0.110 77 9/9/2026
4.0.109 78 9/8/2026
4.0.108 92 9/8/2026
4.0.107 96 9/8/2026
4.0.106 91 9/7/2026
4.0.105 100 9/7/2026
4.0.104 93 9/7/2026
4.0.103 124 9/5/2026
4.0.102 95 9/5/2026
4.0.101 110 9/4/2026
4.0.99 120 9/4/2026
4.0.98 102 9/4/2026
4.0.96 113 9/4/2026
4.0.95 138 9/4/2026
4.0.94 150 9/1/2026
4.0.93 106 8/31/2026
4.0.92 86 8/31/2026
4.0.91 113 8/31/2026
Loading failed