Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

35 Commits

Repository files navigation

Php client library for Zennolab.CapMonster api

Usage

include'./client/Client.php';
include'./client/src/captcha/ImageToText.php';
include'./client/src/captcha/RecaptchaV2.php';
include'./client/src/captcha/HCaptcha.php';
$client = newClient("your_client_key");
//solve image captcha$body = "base64_captcha_image";
$imageRequest = newImageToTextRequest($body);
$imageResult = $client->solve($imageRequest);
//solve Recaptcha 2 (without proxy)$websiteURL = "https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high";
$websiteKey = "6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd";
$recaptchaV2Request = newRecaptchaV2Request($websiteURL, $websiteKey);
$recaptchaV2Result = $client->solve($recaptchaV2Request);
// solve HCaptcha (without proxy)$websiteUrl = "https://lessons.zennolab.com/captchas/hcaptcha/?level=easy";
$websiteKey = "472fc7af-86a4-4382-9a49-ca9090474471";
$hcatpchaRequest = newHCaptchaRequest($websiteURL, $websiteKey);
$hcaptchaResult = $client->solve($hcatpchaRequest);

Response format

The result of the solve method always contains two fields: bool result, a request success indicator, and a mixed message field containing a text description of the error or an object of a successful response from the server.

Supported captchas

About

No description, website, or topics provided.

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages