#
node-capmonster
Capmonster.cloud module for Node.js — at least 2x cheaper, up to 30x faster than manual recognition services.
#
Supported captcha types
- ReCaptcha v2
- ReCaptcha v2 Enterprise
- ReCaptcha v3
- FunCaptcha
- GeeTest
- Turnstile & Cloudflare Challenge
- Image to Text
- AWS WAF
- Binance
- Data Dome
- Imperva (Incapsula)
- TenDI
- Complex Image
#
Quick example
import { RecaptchaV2Task } from "node-capmonster"
const client = new RecaptchaV2Task("<api_key>")
const task = client.task({
websiteURL: "https://example.com",
websiteKey: "<site_key>",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)
console.log(result.gRecaptchaResponse)