Skip to content

A C# wrapper for the TMDB (The Movie Database) API

Notifications You must be signed in to change notification settings

leogomezz4t/TMdllB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TMdllB

A C# .NET wrapper for TMDB (The Movie Database) v3 API

Setup

In order to use the TMDB API you need to get an API key. Follow the instructions here to receive a key

Documentation

TMDllB closely resembles the TMDb API that is documented here

Keep in mind all functions are async and awaitable

Examples

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");

About

A C# wrapper for the TMDB (The Movie Database) API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages