Radson documentation

Contents

Radson documentation#

Documentation for the Radson API.

Getting Started#

To get started install the Radson package from npm.

pnpm i radson

Create the Radson object like this (replace the fields with your servers’ and api keys’).

const radson = new Radson({
   sonarr_address: "http://localhost:8989",
   sonarr_api_key: "3b0b523d29bc4df1baf30dbb2d5d6c43",
   radarr_address: "http://localhost:7878/",
   radarr_api_key: "4f2a6fc3453f4106a75159ab987ae3e2",
});

Note

You are able to just instantiate just Sonarr or just Radarr if you would like. Just leave the fields blank. eg:

const radson = new Radson({
   radarr_address: "http://localhost:7878/",
   radarr_api_key: "4f2a6fc3453f4106a75159ab987ae3e2",
});