Why choose CapMonster Cloud?
Stability
Automatic CAPTCHA solving ensures uninterrupted performance even under heavy loads
Maximum Accuracy
Up to 99% success rate, even with complex CAPTCHA types
Scalability
Easily handles increasing loads while maintaining high speed and stability
Quick Start
Ready-to-use libraries with code examples for API integration and browser extensions
Affiliate Program
Earn up to 30% from user spend when you integrate CapMonster Cloud into your software
Bonus Program
Receive a bonus up to 15% for the volume of solved captchas to your balance
Transparent Pricing
You only pay for successfully solved CAPTCHAs — no hidden fees
Trusted by Industry Leaders
1000+ companies around the world rely on us
Support
Fast, responsive help and setup assistance
Pricing of reCAPTCHA solution
| CAPTCHA | Price (USD) |
|---|---|
$ 0.04* 1000 images$ 0.60 1000 tokens | |
$ 0.90 1000 tokens | |
$ 0.04* 1000 images$ 1.00 1000 tokens | |
$ 1.50 1000 tokens | |
$ 0.04* 1000 images$ 4.00 1000 tokens |
Types of reCAPTCHA
reCAPTCHA v2 Checkbox and Challenges
This is the classic verification method. The user confirms they are human by clicking the checkbox (sometimes validated immediately) or solving visual challenges (e.g., selecting images with traffic lights). Google analyzes the behavior to determine if it is real or automated.
reCAPTCHA v2 Invisible
Verification occurs invisibly – automatically when performing an action (e.g., submitting a login form). If the system deems the behavior suspicious, an additional visual check may be required.
reCAPTCHA v3
A completely invisible captcha that doesn’t interfere with site interaction. Algorithms analyze user activity and assign a “trust score.” The site owner sets the threshold for suspicious activity.
reCAPTCHA Enterprise
An advanced business solution. Supports v2 and v3 – with checkbox, challenges, or invisible verification – and provides extra tools for analysis, bot protection, and risk management. Ideal for large companies with high security needs.
reCAPTCHA examples




Captcha solving steps
1st step
Sign Up on the CapMonster Cloud website to start solving captchas
2st step
Copy your API key into the software for recognizing captcha (for example, into the CapMonster Cloud extension)
3st step
Send captchas for automatic recognition
4st step
Get fast bypassed captcha
SDK for automatic recognition of reCAPTCHA
Below are examples of solutions with token retrieval. You may also choose a click-based solution – in this case, coordinates for clicks will be returned. More details can be found in the dedicated section of the documentation.
reCaptcha v2
javascript
// https://github.com/CapMonsterCloud/capmonstercloud-client-js
import { CapMonsterCloudClientFactory, ClientOptions, RecaptchaV2Request }
from '@zennolab_com/capmonstercloud-client';
document.addEventListener('DOMContentLoaded', async () => {
const cmcClient = CapMonsterCloudClientFactory.Create(
new ClientOptions({ clientKey: '<your capmonster.cloud API key>' })
);
console.log(await cmcClient.getBalance());
const recaptchaV2Request = new RecaptchaV2Request({
websiteURL: 'https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high',
websiteKey: '6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd',
});
/*
const recaptchaV2Request = new RecaptchaV2Request({
websiteURL: 'https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high',
websiteKey: '6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd',
proxyType: 'http', // Тип прокси: http, https, socks4, socks5
proxyAddress: '8.8.8.8',
proxyPort: 8080,
proxyLogin: 'proxyLoginHere',
proxyPassword: 'proxyPasswordHere',
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36',
});
*/
console.log(await cmcClient.Solve(recaptchaV2Request));
});reCAPTCHA V3
javascript
// https://github.com/CapMonsterCloud/capmonstercloud-client-js
import {
CapMonsterCloudClientFactory,
ClientOptions,
RecaptchaV3ProxylessRequest
} from '@zennolab_com/capmonstercloud-client';
document.addEventListener('DOMContentLoaded', async () => {
const cmcClient = CapMonsterCloudClientFactory.Create(
new ClientOptions({ clientKey: '<your capmonster.cloud API key>' })
);
console.log(await cmcClient.getBalance());
const recaptchaV3Request = new RecaptchaV3ProxylessRequest({
websiteURL: 'https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high',
websiteKey: '6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd',
minScore: 0.6,
pageAction: 'some-action',
});
console.log(await cmcClient.Solve(recaptchaV3Request));
});
reCAPTCHA Enterprise
javascript
// https://github.com/CapMonsterCloud/capmonstercloud-client-js
import { CapMonsterCloudClientFactory, ClientOptions, RecaptchaV2EnterpriseRequest } from '@zennolab_com/capmonstercloud-client';
document.addEventListener('DOMContentLoaded', async () => {
const cmcClient = CapMonsterCloudClientFactory.Create(new ClientOptions({ clientKey: '<your capmonster.cloud API key>' }));
console.log(await cmcClient.getBalance());
const recaptchaV2EnterpriseRequest = new RecaptchaV2EnterpriseRequest({
websiteURL: 'https://mydomain.com/page-with-recaptcha-enterprise',
websiteKey: '6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd',
enterprisePayload: {
s: 'SOME_ADDITIONAL_TOKEN',
},
});
// const recaptchaV2EnterpriseRequest = new RecaptchaV2EnterpriseRequest({
// websiteURL: 'https://mydomain.com/page-with-recaptcha-enterprise',
// websiteKey: '6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd',
// enterprisePayload: {
// s: 'SOME_ADDITIONAL_TOKEN',
// },
// proxyType: 'http',
// proxyAddress: '8.8.8.8',
// proxyPort: 8080,
// proxyLogin: 'proxyLoginHere',
// proxyPassword: 'proxyPasswordHere',
// userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36',
// });
console.log(await cmcClient.Solve(recaptchaV2EnterpriseRequest));
});
reCAPTCHA recognition statistics
99%
Average successful captcha recognition rate
$115
Average monthly savings for recognizing 2000 captchas per day
10.2 sec
Average recognition time