1.0.1 • Published 6 years ago

abios v1.0.1

Weekly downloads
7
License
ISC
Repository
github
Last release
6 years ago

abios

available calls can be found here.

Initialization & Use

var AbiosAPI = require('abios')
var api = AbiosAPI({
  clientID: process.env.ABIOS_CLIENT_ID,
  clientSecret: process.env.ABIOS_CLIENT_SECRET
});

api('/series', [
  '&with[]=matches', // matches associated with the series.
  '&with[]=casters', // live streams for the series.
  '&with[]=tournament', // tournament data associated with the series.
  `&order=start`
]).then(list => {
  // do stuff
}).catch(console.error)