#
FunCaptcha (Arkose Labs)
Solve FunCaptcha / Arkose Labs challenges.
Do NOT load the captcha iframe to extract the blob value — this will invalidate it. Extract the blob from network requests instead.
#
Basic usage
import { FuncaptchaTask } from "node-capmonster"
const client = new FuncaptchaTask("<api_key>")
const task = client.task({
websiteURL: "https://example.com",
websitePublicKey: "69A21A01-CC7B-B9C6-0F9A-E7FA06677FFC",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)
console.log(result.token)