Soenneker.YouTube.Client 4.0.2433

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

Provides a lazily created YoutubeExplode.YoutubeClient for reading public YouTube metadata and media streams.

Install

dotnet add package Soenneker.YouTube.Client

Registration

using Soenneker.YouTube.Client.Registrars;
services.AddYouTubeClientUtilAsSingleton();

Scoped registration is also available:

services.AddYouTubeClientUtilAsScoped();

Each provider owns its cached HTTP client. Scoped providers use independent cache entries, so disposing one scope does not remove another scope's client.

Usage

public sealed class VideoReader
{
    private readonly IYouTubeClientUtil _youtube;

    public VideoReader(IYouTubeClientUtil youtube)
    {
        _youtube = youtube;
    }

    public async Task PrintTitle(string videoUrl, CancellationToken cancellationToken)
    {
        YoutubeClient client = await _youtube.Get(cancellationToken);
        var video = await client.Videos.GetAsync(videoUrl, cancellationToken);

        Console.WriteLine($"{video.Title} — {video.Author.ChannelTitle}");
    }
}

The package does not use the official YouTube Data API and does not require an API key. Behavior follows YouTubeExplode and can be affected by changes to YouTube's public site.

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.2444 36 9/13/2026
4.0.2443 43 9/13/2026
4.0.2442 44 9/13/2026
4.0.2441 40 9/13/2026
4.0.2440 45 9/13/2026
4.0.2439 42 9/12/2026
4.0.2437 77 9/9/2026
4.0.2436 86 9/8/2026
4.0.2435 90 9/8/2026
4.0.2434 93 9/7/2026
4.0.2433 99 9/7/2026
4.0.2432 94 9/5/2026
4.0.2431 95 9/4/2026
4.0.2430 95 9/4/2026
4.0.2429 95 9/4/2026
4.0.2428 95 9/4/2026
4.0.2426 88 9/3/2026
4.0.2425 91 9/1/2026
4.0.2424 93 8/31/2026
4.0.2423 91 8/31/2026
Loading failed

Updated Multiple NuGet packages