[go: up one dir, main page]

Skip to content

TvDbSharper is fully featured modern REST client for the TheTVDB API v4

License

Notifications You must be signed in to change notification settings

HristoKolev/TvDbSharper

Repository files navigation

TvDbSharper is fully featured modern REST client for the TheTVDB API v4

Last API compatibility check: 23-02-2022

NuGet Build status

How to install

dotnet add package TvDbSharper

The client

There is one client you need to know about:

var client = new TvDbClient();

Authentication

Before you do anything else you need to authenticate yourself.

Then you can use the client like this:

await client.Login("ApiKey", "PIN");

Everything else

This client supports all of the functionality of the REST API and I can't list every single method here.

You can explore that yourself or read the REST API documentation provided by thetvdb.com here https://thetvdb.github.io/v4-api/

You will find equivalent method for every single route there.