radarr 2.1.1+1 copy "radarr: ^2.1.1+1" to clipboard
radarr: ^2.1.1+1 copied to clipboard

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

example/main.dart

import 'package:radarr/radarr.dart';

void main() async {
    // The host must include the protocol
    // If required, the host should include the port and the base URL as well
    String host = 'http://192.168.1.111:7878';
    // Your key can be fetched from the Radarr web GUI
    String key = '<apikey>';
    Radarr api = Radarr(host: host, apiKey: key);
    // Run your commands
    // Example to get and print the title of the movie with identifier 1
    api.movie.get(movieId: 1).then((data) => print(data.title));
}
2
likes
100
pub points
0%
popularity

Publisher

verified publishercomet.tools

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

dio, json_annotation

More

Packages that depend on radarr