Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.28 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.28 KB

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.