Skip to content

Mike97M/2Captcha-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

2Captcha

C# wrapper for 2Captcha API

Prerequisites:

2Captcha API key

Usage:

Get Account Balance

TwoCaptchaApi api = new TwoCaptchaApi(<API_KEY>);
float balance = api.getBalance();

Solve Captcha

TwoCaptchaApi api = new TwoCaptchaApi(<API_KEY>);
string result = api.SolveCaptcha(IMAGE_PATH);

Solve ReCaptcha

TwoCaptchaApi api = new TwoCaptchaApi(<API_KEY>);
string result = api.SolveReCaptcha(SITE_KEY,SITE_URL);

Report incorrect captcha

TwoCaptchaApi api = new TwoCaptchaApi(<API_KEY>);
bool reported = api.reportBadCaptcha(2captcha.captchaId);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages