casino-api-videoslots
v1.0.3
Published
Collect stats as total earnings, clicks, signups and first time depositors for the current month.
Downloads
2
Readme
Videoslots Earnings scraper (videoslots.com)
A node.js package for my "Casino Earnings"-Application
Collect stats as total earnings, clicks, signups and first time depositors for the current month.
Install
npm install -save casino-api-videoslots
Example:
var Videoslots = require('casino-api-videoslots');
new Videoslots({
'username': 'affiliateusername',
'password': 'mysecretpassword'
}, function(response) {
console.log(response);
/*
{ earnings: '543.61', clicks: '0', signups: '22', ftd: '8' }
*/
});