At least 2x cheaper, up to 30x faster than manual recognition services.
If you have any problem with usage, read the documentation or create an issue
yarn add node-capmonster
npm node-capmonster
pnpm add node-capmonster
- FunCaptcha
- GeeTest
- HCaptcha
- Image to Text
- ReCAPTCHA v2 / v2 Enterprise / v3
- Turnstile
- TenDI
- Data Dome
- AWS WAF
import { RecaptchaV2Task } from "node-capmonster"
const client = new RecaptchaV2Task("<api_key>")
const task = client.task({
websiteKey: "<website_key>",
websiteURL: "<url>",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)
import { FuncaptchaTask } from "node-capmonster"
const client = new FuncaptchaTask("<api_key>")
const task = client.task({
websitePublicKey: "<website_pubkey>",
websiteURL: "<url>",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)
More examples can be found at documentation.