oocradio-api-wrapper

1.0.1 • Public • Published

image

oocradio-wrapper

An API wrapper for oocradio.com because I was bored...

Examples

Getting Setup

const OOCRadio = require('./index.js')

const oocradio = new OOCRadio({ version: '1.1' }) // Takes in the version of the api you want to use 

Get Current Song

oocradio.getCurrentSong().then(data => console.log(data))
Returns
{
    "status": string,
    "response": {
        "Artist": string,
        "Title": string,
        "Cover": string/url,
    }
}

Get Next Live

oocradio.nextLive().then(data => console.log(data))
Returns
{
    "status": string,
    "response": {
      "Name": string,
      "Show_Name": string,
      "Date": number,
      "Artwork": string/url,
      "Exists": boolean,
    }
}

Get Live Data

oocradio.getLiveData().then(data => console.log(data))
Returns
{
    "status": string,
    "response": {
      "Artist": string,
      "Title": string,
      "Cover": string/url,
      "OnAir_Name": string,
      "OnAir_Artwork": string/url,
      "Spotify_URL": string/url,
    }
}

Credits

  • @Hyperz Writing this extremely simple wrapper.
  • @Shawn E. Rewriting to change to a constructor

Package Sidebar

Install

npm i oocradio-api-wrapper

Weekly Downloads

0

Version

1.0.1

License

ISC

Unpacked Size

3.28 kB

Total Files

3

Last publish

Collaborators

  • hyperz