oocradio-api-wrapper
v1.0.1
Published
API Wrapper for the OOCRadio.com API. Bubble.io is very limited and sucks btw.
Downloads
9
Readme
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))
{
"status": string,
"response": {
"Artist": string,
"Title": string,
"Cover": string/url,
}
}
Get Next Live
oocradio.nextLive().then(data => console.log(data))
{
"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))
{
"status": string,
"response": {
"Artist": string,
"Title": string,
"Cover": string/url,
"OnAir_Name": string,
"OnAir_Artwork": string/url,
"Spotify_URL": string/url,
}
}