#
ReCaptcha v3
Solve Google reCAPTCHA v3 challenges. Always uses built-in proxies (no custom proxy support).
#
Finding parameters
- websiteKey: Found in
api.js?render=THIS_ONEin the page source.
#
Basic usage
import { RecaptchaV3Task } from "node-capmonster"
const client = new RecaptchaV3Task("<api_key>")
const task = client.task({
websiteURL: "https://example.com",
websiteKey: "6Le-wvkSVAAAExE_szVSP2n",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)
console.log(result.gRecaptchaResponse)