1.0.3 • Published 7 years ago

casino-api-videoslots v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

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' }
  */
});