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

Repository files navigation

Zennolab.CapMonsterCloud.Client

Warning

DEPRECATED / УСТАРЕЛО
This repository is no longer maintained. Please use our new, official .NET / C# SDK repository:
👉 CapMonsterCloud/capmonster-dotnet-captcha-solver

Official C# client library for capmonster.cloud captcha recognition service

Installation

Via Package Manager:

Install-Package Zennolab.CapMonsterCloud.Client

Via .NET CLI

dotnet add package Zennolab.CapMonsterCloud.Client

Usage

var clientOptions = new ClientOptions
{
    ClientKey = "<your capmonster.cloud API key>"
};

var cmCloudClient = CapMonsterCloudClientFactory.Create(clientOptions);

// solve RecaptchaV2 (without proxy)
var recaptchaV2Request = new RecaptchaV2Request
{
    WebsiteUrl = "https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high",
    WebsiteKey = "6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd",
};
var recaptchaV2Result = await cmCloudClient.SolveAsync(recaptchaV2Request);

// solve RecaptchaV2 (with proxy)
var recaptchaV2ProxyRequest = new RecaptchaV2Request
{
    WebsiteUrl = "https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high",
    WebsiteKey = "6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd",
    Proxy = new ProxyContainer("203.0.113.45", 8080, ProxyType.Http, "login", "password")
};
var recaptchaV2ProxyResult = await cmCloudClient.SolveAsync(recaptchaV2ProxyRequest);

// solve a CustomTask (anti-bot/WAF systems such as Tspd, Castle, DataDome, etc.)
var tspdRequest = new TspdCustomTaskRequest(
    tspdCookie: "TS386a400d029=08...010245; TS386a400d029=08...01a06e; TS386a400d078=08...dbb3b0c; TSd2153684027=08...1944",
    htmlPageBase64: "PCFET0NU...k+PC9odG1sPg==")
{
    WebsiteUrl = "https://yourwebsite.com/page-with-tspd",
    Proxy = new ProxyContainer("203.0.113.45", 8080, ProxyType.Http, "login", "password")
};
var tspdResult = await cmCloudClient.SolveAsync(tspdRequest);

Supported captcha recognition requests:

Classic captcha tasks:

Custom tasks (anti-bot / WAF / custom challenge systems):

Complex image tasks (grid / dynamic image selection tasks):

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages