Skip to content

botlify-net/anticaptchacom-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Anti Captcha Com API

Latest release Build Status

This integration follow the documentation of the Anti Captcha Com API.

How to install ?

Add the dependency in your pom.xml:

<dependency>
    <groupId>net.botlify.anticaptchacom-api</groupId>
    <artifactId>anticaptchacom-api</artifactId>
    <version>LATEST</version>
</dependency>

Basic usage

To start using the API, you need to create an instance of the API with your API key. You can find your API key in your account page, then use the following code:

AntiCaptchaComConfig config = new AntiCaptchaComConfig("YOUR_API_KEY");
AntiCaptchaComAPI api = new AntiCaptchaComAPI(config);

// Solve a captcha
String response = solve(captchaKey, captchaUrl, captchaType);