https://github.com/jc21/nodejs-radarr-api
https://github.com/jc21/nodejs-radarr-api
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jc21/nodejs-radarr-api
- Owner: jc21
- Created: 2019-07-10T01:00:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T05:45:53.000Z (almost 4 years ago)
- Last Synced: 2025-03-18T03:49:10.419Z (3 months ago)
- Language: TypeScript
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```