2.0.1 • Published 7 years ago

ifpa-api v2.0.1

Weekly downloads
3
License
Unlicense
Repository
github
Last release
7 years ago

ifpa-api

A Promise based node client for the International Flipper Pinball Association (IFPA) API.

Installation

npm install ifpa-api

Usage

Create an instance of the IfpaApi class, providing your API key as a parameter. You can get an API key by following the instructions on http://www.ifpapinball.com/api/documentation/

const IfpaApi = require('ifpa-api');
const ifpaApi = new IfpaApi('<your_key');

ifpaApi.getActiveCalendarEvents('Sweden')
  .then(result => console.log(JSON.stringify(result)));

ifpaApi.getPlayerInformation(20000)
  .then(result => console.log(JSON.stringify(result)));
2.0.1

7 years ago

2.0.0

7 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.1.0

9 years ago