bestcaptchasolver - Bestcaptchasolver nodeJS client API library
bestcaptchasolver-nodejs is a super easy to use bypass captcha nodeJS API wrapper for bestcaptchasolver.com captcha service
Installation
npm install bestcaptchasolver
or
git clone https://github.com/bestcaptchasolver/bestcaptchasolver-nodejs
Usage
Set access token, before using the library
var bestcaptchasolver = require('bestcaptchasolver');
bestcaptchasolver.set_access_token('access token from /account');
Get balance
bestcaptchasolver.account_balance().then(function (balance) {
console.log('Balance: $', balance);
})
Submit image captcha
The submission of image captcha is done by sending us the image as a b64 encoded string.
bestcaptchasolver.submit_captcha({
b64image: captcha,
}).then(function (id)) { };
Submit reCAPTCHA
The page_url
and site_key
are the only requirements. There are other optional parameters though.
bestcaptchasolver.submit_recaptcha({
page_url: 'PAGE_URL_HERE',
site_key: 'SITE_KEY_HERE',
}).then(function (id)) { };
Geetest
bestcaptchasolver.submit_geetest({
domain: 'DOMAIN_HERE',
gt: 'GT_HERE',
challenge: 'CHALLENGE_HERE',
}).then(function (id)) { };
Capy
bestcaptchasolver.submit_capy({
page_url: 'PAGE_URL_HERE',
site_key: 'SITE_KEY_HERE',
}).then(function (id)) { };
hCaptcha
bestcaptchasolver.submit_hcaptcha({
page_url: 'PAGE_URL_HERE',
site_key: 'SITE_KEY_HERE',
}).then(function (id)) { };
FunCaptcha (Arkose Labs)
bestcaptchasolver.submit_hcaptcha({
page_url: 'https://abc.com',
s_url: 'https://api.arkoselabs.com',
site_key: '11111111-1111-1111-1111-111111111111',
}).then(function (id)) { };
Retrieve
Retrieval is done by passing the ID, for all captchas
bestcaptchasolver.retrieve_captcha(id).then(function (data) { console.log(JSON.stringify(data)); });
This method returns an object, with the text
attribute for image captcha or gresponse
if submission was done for reCAPTCHA
or solution
for geetest and capy
If reCAPTCHA is submitted with proxy, get proxy status
log('Recaptcha response: ' + data.gresponse);
log('Proxy status: ' + data.proxy_status);
Set captcha bad
bestcaptchasolver.set_captcha_bad(captcha_id);
Examples
Check the examples
folder
License
API library is licensed under the MIT License
More information
More info about the API parameters can be found here
captcha, bypasscaptcha, decaptcher, decaptcha, 2captcha, deathbycaptcha, anticaptcha,
bypassrecaptchav2, bypassnocaptcharecaptcha, bypassinvisiblerecaptcha, captchaservicesforrecaptchav2,
recaptchav2captchasolver, googlerecaptchasolver, recaptchasolverpython, recaptchabypassscript