opinionbee-api
v1.1.0
Published
A client library for the opinionbee.uk API
Downloads
15
Readme
opinionbee-api
A Node.js client library for the Opinionbee API. Tested against Node.js versions 6, 7 and 8.
Installation
npm install opinionbee-api
Usage
const ApiClient = require('opinionbee-api');
const apiClient = new ApiClient({ apiKey: 'your-api-key' });
apiClient.polls()
.then(polls => console.log(polls))
.catch(console.error);
See API documentation for more details.