CAPTCHAFORUM
Administrator
Prerequisites:
You will need a 2Captcha API key
Install
or
Usage
Set up your api key:
It'll return an object with the solve function, and you'll be able to use it inside of your script
And this solvedCaptcha will return object, with captcha id and captcha text
You can use the balance function too, to see your balance at 2Captcha
You can use the Report Captcha is valid or not.
Documentation https://www.npmjs.com/package/2captcha-node
You will need a 2Captcha API key
Install
npm install 2captcha-node
or
yarn add 2captcha-node
Usage
Set up your api key:
Code:
import captchaSolver from '2captcha-node';
const captcha = captchaSolver('your-api-key');
It'll return an object with the solve function, and you'll be able to use it inside of your script
Code:
const options = {
image: 'base64-image',
maxAttempts: 60, // Optional
};
const { id, text } = await captcha.solve(options);
And this solvedCaptcha will return object, with captcha id and captcha text
You can use the balance function too, to see your balance at 2Captcha
Code:
const balance = await captcha.balance();
You can use the Report Captcha is valid or not.
Code:
await captcha.report(id, isValid);
Documentation https://www.npmjs.com/package/2captcha-node