@hitthemoney/hcaptcha-solver

A library to solve hCaptcha challenges

Usage no npm install needed!

<script type="module">
  import hitthemoneyHcaptchaSolver from 'https://cdn.skypack.dev/@hitthemoney/hcaptcha-solver';
</script>

README

hcaptcha-solver

A library to solve hcaptcha challenges

Install

npm install @hitthemoney/hcaptcha-solver

Quick Example

const solveCaptcha = require("@hitthemoney/hcaptcha-solver");

(async () => {
    try {
        const response = await solveCaptcha("https://captcha-protected-site.com", {
            siteKey: "site-key"
        });
        console.log(response);
        // F0_eyJ0eXAiOiJKV1Q...
    } catch (error) {
        console.log(error);
    }
})();

Credits