✅ CapMonster.Cloud — Fast, Reliable CAPTCHA Solving for Automation & Scraping
Official PHP SDK for the CapMonster Cloud API.
- Package: zennolab/capmonstercloud.client on Packagist
- Documentation: docs.capmonster.cloud
- Dashboard / API key: dash.capmonster.cloud
💵 Want to test before depositing? Contact support and we’ll add trial credits to your account.
include './client/Client.php';
include './client/src/captcha/ImageToText.php';
include './client/src/captcha/RecaptchaV2.php';
$client = new Client("your_client_key");
//solve image captcha
$body = "base64_captcha_image";
$imageRequest = new ImageToTextRequest($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 = new RecaptchaV2Request($websiteURL, $websiteKey);
$recaptchaV2Result = $client->solve($recaptchaV2Request);
Supported task families include reCAPTCHA, GeeTest, image-to-text, and additional task types documented in the public docs.
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.
- GeeTestProxylessRequest
- GeeTestRequest
- ImageToTextRequest
- RecaptchaV2ProxylessRequest
- RecaptchaV2Request
- RecaptchaV3ProxylessRequest
- RecaptchaV2EnterpriseProxylessRequest
- RecaptchaV2EnterpriseRequest
- TurnstileProxylessRequest
- TurnstileRequest
- RecaptchaComplexImageTaskRequest
⭐️ If you find this project useful, please give it a star on GitHub!
