An open API service indexing awesome lists of open source software.

https://github.com/jc21/nodejs-radarr-api


https://github.com/jc21/nodejs-radarr-api

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Radarr API Client

See: https://github.com/Radarr/Radarr/wiki/API

### Usage

```javascript
const Radarr = require('@jc21/radarr-api').Radarr;

let r = new Radarr('https://USER:[email protected]', 'APIKEY');

r.movies()
.then(result => {
console.log(result);
})
.catch(err => {
console.error('ERR:', err);
});
```

### Compiling

```bash
npm install
tsc --project tsconfig.build.json
```