KickNet 0.1.3

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

Kick .NET SDK

Typed .NET SDK for the KICK public API, with first-class app-auth sessions, user-auth sessions, request builders, and webhook verification.

Default auth model

The default SDK path is now:

  1. configure client_id and client_secret
  2. create an app session
  3. use session.Client for normal API calls
using Kick;

var session = KickSdk.CreateAppSession(new KickAppCredentials
{
    ClientId = "<client-id>",
    ClientSecret = "<client-secret>",
});

var kick = session.Client;
var channels = await kick.Channels.GetAsync(new GetChannelsRequest
{
    Slugs = ["xqc"],
});

The session acquires an app access token in memory and reuses it automatically.

User auth

User auth remains available, but it is a separate path:

var auth = KickSdk.CreateUserAuthClient(new KickUserAuthOptions
{
    ClientId = "<client-id>",
    ClientSecret = "<client-secret>",
    RedirectUri = "https://localhost/callback",
    DefaultScopes = [KickScopes.UserRead, KickScopes.ChannelRead],
});

var login = auth.CreateLoginRequest();
// redirect browser to login.AuthorizationUri
// then exchange the returned code:
// var session = await auth.ExchangeAuthorizationCodeAsync(code, login.CodeVerifier);

Experimental VODs and clips

VOD/video and clip helpers are available behind an explicit opt-in:

using Kick;

var kick = new KickClient(options: new KickClientOptions
{
    EnableExperimentalWebsiteApi = true,
});

var videos = await kick.Experimental.Videos.GetByChannelAsync("xqc");
var latestVideos = await kick.Experimental.Videos.GetLatestByChannelAsync("xqc");
var clips = await kick.Experimental.Clips.GetByChannelAsync(new GetChannelWebsiteClipsRequest
{
    Channel = "xqc",
    Limit = 25,
});

These clients use undocumented Kick website endpoints, not the official api.kick.com/public/... API. They may be blocked, changed, rate-limited, or removed by Kick without notice. Prefer official public API clients when Kick publishes stable VOD or clip endpoints.

Projects

  • src/KickNet: the SDK package
  • samples/KickNet.ConsoleExamples: general command-based SDK reference
  • samples/KickNet.BotLoginWebhookSample: minimal API sample for user login and webhook handling
  • samples/KickNet.RewardOpsSample: reward and redemption workflows
  • samples/KickNet.ChatOpsSample: chat and moderation workflows
  • samples/KickNet.ChannelDashboardSample: channel inspection and metadata updates
  • samples/KickNet.ExperimentalMediaSample: experimental VOD/video and clip listing
  • tests/KickNet.Tests: test suite
  • docs: usage guides

More samples

dotnet run --project samples/KickNet.ConsoleExamples -- help
dotnet run --project samples/KickNet.ExperimentalMediaSample -- xqc
dotnet run --project samples/KickNet.RewardOpsSample -- help
dotnet run --project samples/KickNet.ChatOpsSample -- help
dotnet run --project samples/KickNet.ChannelDashboardSample
dotnet run --project samples/KickNet.BotLoginWebhookSample

Documentation

Legacy token providers

IKickAccessTokenProvider, StaticAccessTokenProvider, and DelegateAccessTokenProvider remain available for advanced/manual scenarios. They are no longer the recommended default startup path.

Build and test

dotnet build KickNetSdk.slnx
dotnet test KickNetSdk.slnx
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
0.1.3 110 5/28/2026
0.1.2 100 5/28/2026
0.1.1 110 5/28/2026
0.1.0 93 5/28/2026