Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

everettsouthwick/RadarrSharp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RadarrSharp

C# Radarr API wrapper. Still in a beta phase so all methods and properties are subject to change. Some methods are yet to be implemented, and others may not even work.

This project is atm. not actively developed!

Compatibility

Written as a .NET Standard library, so should be compatible with .NET framework, .NET core and Xamarin.

Installation

Available as a NuGet package:

PM> Install-Package RadarrSharp

Known Issues

  • None ATM.

Usage

These are some examples on how to use the API. All methods are async/awaitable. Most methods includes help text on what they do. If you need more information on how the various endpoints works, visit https://github.com/Radarr/Radarr/wiki/API.

Create the client:

var radarrClient = new RadarrClient("127.0.0.1", 7878, "apiKey");

Get all movies:

var movies = await radarrClient.Movie.GetMovies();
foreach (var item in movies)
{
    Console.WriteLine($"{item.Title}");
}

Search for movies:

var command = await radarrClient.Command.MoviesSearch(new int[] { 123, 456, 789 });

// Get status of command
Console.WriteLine($"{command.Name}: {command.State}");

Get downloading movies:

var queue = await radarrClient.Queue.GetQueue();
foreach (var item in queue)
{
    Console.WriteLine($"{item.Status}: {item.Title}");
}

About

C# Radarr API wrapper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%