Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/captchakillernet/captchakiller-nodejs
CaptchaKiller Node.JS API Client Library, for solving captchas. Cheap recaptcha solver.
https://github.com/captchakillernet/captchakiller-nodejs
captcha captcha-breaking captcha-bypass captcha-services-for-recaptcha-v2 captcha-solver captcha-solving captchakiller recaptcha recaptcha-v2 recaptcha-v3
Last synced: 3 months ago
JSON representation
CaptchaKiller Node.JS API Client Library, for solving captchas. Cheap recaptcha solver.
- Host: GitHub
- URL: https://github.com/captchakillernet/captchakiller-nodejs
- Owner: captchakillernet
- License: mit
- Created: 2024-05-18T19:14:50.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T14:12:44.000Z (7 months ago)
- Last Synced: 2024-09-27T07:42:10.115Z (3 months ago)
- Topics: captcha, captcha-breaking, captcha-bypass, captcha-services-for-recaptcha-v2, captcha-solver, captcha-solving, captchakiller, recaptcha, recaptcha-v2, recaptcha-v3
- Language: JavaScript
- Homepage: https://www.captchakiller.net
- Size: 23.4 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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);
}
})();
```
#### Solve Recaptcha V2
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveRecaptchaV2("6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9", "https://recaptcha-demo.appspot.com/");
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```
#### Solve Recaptcha V2 Enterprise
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveRecaptchaV2Enterprise("6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9", "https://recaptcha-demo.appspot.com/");
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```
#### Solve Recaptcha V3 Low Score
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveRecaptchaV3LowScore("6LdKlZEpAAAAAAOQjzC2v_d36tWxCl6dWsozdSy9", "https://recaptcha-demo.appspot.com/", "examples/v3scores");
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```
#### Solve Funcaptcha
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveFuncaptcha("DF9C4D87-CB7B-4062-9FEB-BADB6ADA61E6", "https://demo.arkoselabs.com")
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```
#### Solve MTCaptcha
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveMTCaptcha("MTPublic-DemoKey9M", "https://service.mtcaptcha.com/");
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```
#### Solve Text Captcha
```
const { CaptchaKiller } = require('captchakiller');(async () => {
const captchaKiller = new CaptchaKiller("API_KEY"); // Optionally add a partnerId and or timeout.try {
const result = await captchaKiller.solveTextCaptcha("base64imagestring");
console.log(`Solution: ${result}`);} catch (error) {
console.error(error.message);
}
})();
```