In order to use the TMDB API you need to get an API key. Follow the instructions here to receive a key
TMDllB closely resembles the TMDb API that is documented here
Keep in mind all functions are async and awaitable
A simple example of how to search for movies
TMDbClient client = new TMDbClient(API_KEY);
MovieResultContainer movies = await client.SearchMovies("Percy Jackson and the Olympians");
Console.WriteLine($"Name: {movies.Results[0].Title}");
A simple example of how to search for tv shows
TMDbClient client = new TMDbClient(API_KEY);
TVResultContainer shows = await client.SearchTV("The Flash");
Console.WriteLine($"Name: {shows.Results[0].Name");