Capmonster.cloud Library for .NET Core.
via Package Manager:
NuGet\Install-Package CapMonster.Cloud -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
via .NET CLI:
dotnet add package CapMonster.Cloud --version 1.0.0
via adding PackageReference:
<PackageReference Include="CapMonster.Cloud" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
- Image to text
- ReCaptcha V2
- ReCaptcha V2 Enterprise
- ReCaptcha V3
- HCaptcha
- FunCaptcha
- Turnstile
- GeeTest
var client = new CapMonsterClient("apikey");
var client = new CapMonsterClient("apikey");
await client.GetBalanceAsync();
var client = new CapMonsterClient("apikey", false);
var task = new ReCaptchaV2Task("recaptcha-site", "recaptcha-site-key");
string id = await client.CreateTask(task);
var response = await client.JoinTaskResult<ReCaptchaV2Response>(id);
var client = new CapMonsterClient("apikey", false);
var task = new FunCaptchaTask("funcaptcha-site", "funcaptcha-key", "funcaptcha-js-source");
string id = await client.CreateTask(task);
var response = await client.JoinTaskResult<FunCaptchaTaskResponse>(id);
For other examples and api documentation please visit wiki