为什么选择 CapMonster Cloud?
稳定性
自动 CAPTCHA 识别确保在高负载下也能保持不间断的性能
最高准确率
即使是复杂的 CAPTCHA 类型,成功率也高达 99%
可扩展性
在保持高速与稳定性的同时,轻松应对不断增长的负载
快速开始
提供可直接使用的库和示例代码,支持 API 集成和浏览器扩展
联盟计划
将 CapMonster Cloud 集成到您的软件中,可从用户消费中获得最高 30% 的收益
奖励计划
根据已解决的 CAPTCHA 数量,获得最高 15% 的余额奖励
透明定价
您只需为成功识别的 CAPTCHA 支付费用 — 无任何隐藏收费
行业领袖的信赖之选
全球超过 1000 家企业选择并信任我们
技术支持
快速响应的帮助与配置协助
reCAPTCHA解决方案的定价
验证码
价格
$ 0.04*
1k 张图片$ 0.60
1k 代币$ 0.90
1k 代币$ 0.04*
1k 张图片$ 1.00
1k 代币$ 1.50
1k 代币$ 0.04*
1k 张图片$ 4.00
1k 代币reCAPTCHA 类型
reCAPTCHA v2 复选框和任务
这是经典的验证方式。用户通过点击复选框确认自己是人类(验证可能立即完成)或完成视觉任务(例如选择红绿灯图片)。Google 会分析行为并判断操作是真实还是自动化。
reCAPTCHA v2 隐形
验证隐形进行——在执行操作时自动进行(例如登录时提交表单)。如果系统认为行为可疑,可能会提示用户进行额外视觉验证。
reCAPTCHA v3
完全隐形的验证码,不影响网站交互。算法分析用户活动并分配“信任分”。网站所有者自行设定判断可疑行为的阈值。
reCAPTCHA Enterprise
企业高级解决方案。支持 v2 和 v3——包括复选框、任务或隐形验证,并提供额外工具用于分析、防护机器人及风险管理。适用于大型企业和安全要求高的项目。
reCAPTCHA 示例




验证码解决步骤
步骤 1
在 CapMonster Cloud 网站注册以开始解决验证码
步骤 2
将您的 API 密钥复制到识别验证码的软件中(例如 CapMonster Cloud 扩展程序)
步骤 3
发送验证码进行自动识别
步骤 4
快速获取解决的验证码
用于自动识别 reCAPTCHA 的 SDK
以下是获取 token 的解决方案示例。如果需要,您可以选择点击方式的解决方案——此情况下响应将返回点击坐标。详细信息请参阅 文档。
reCAPTCHA V2
// 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 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',
});
*/
console.log(await cmcClient.Solve(recaptchaV2Request));
});reCAPTCHA V3
// 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
// 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 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',
// });
console.log(await cmcClient.Solve(recaptchaV2EnterpriseRequest));
});
reCAPTCHA 识别统计
99%
平均成功的验证码识别率
$115
每天识别 2000 个验证码的平均每月节省
10.2 秒
平均识别时间