Skip to content

captchakillernet/captchakiller-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

captchakiller-nodejs

Installation

npm install captchakiller

Usage

Get balance example

const { CaptchaKiller } = require('captchakiller');

(async () => {
  const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.

  try {
    const balance = await captchaKiller.getBalance();
    console.log(`Your balance is: ${balance}`);

  } catch (error) {
    console.error(error.message);
  }
})();