Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

offcloud-api

TheBeastLT191MIT1.0.2

Node Offcloud API wrapper

offcloud, debrid

readme

Usage example

npm install offcloud-api --save
const OffcloudClient = require('offcloud-api')
const OC = new OffcloudClient('Your API Token')

OC.instant.cache(['infoHash1', 'infoHash2']).then(results => console.log(results));
OC.cloud.download('someMagnetLink').then(results => console.log(results));
OC.cloud.history().then(results => console.log(results));