An open API service indexing awesome lists of open source software.

https://github.com/aydonlol/capmonster-api-wrapper

Provides a special way to use capmonster easily, developed by neumatic. Simply thought id share this with github due to the low amount of people who use gitlab. I take no credit for the creation of this and therefore will not help you with your errors.
https://github.com/aydonlol/capmonster-api-wrapper

capmonster capmonster-api capmonster-cloud capmonster-js captcha captcha-solver captcha-solving captchasolving funcaptcha hcaptcha recaptcha

Last synced: about 1 year ago
JSON representation

Provides a special way to use capmonster easily, developed by neumatic. Simply thought id share this with github due to the low amount of people who use gitlab. I take no credit for the creation of this and therefore will not help you with your errors.

Awesome Lists containing this project

README

          

# hcaptcha
### install
```
npm i https://gitlab.com/neumaticc/captcha
```
### example usage
```js
const Captcha = require("@neumatic/captcha-monster")

const client = new Captcha("your-key", {
max_retries: 60, // default 60
check_interval: 5000, //default 5000
debug: true // default false
})

(async () => {
console.log("start")
// solve
const token = await client.solve("4c672d35-0701-42b2-88c3-78380b0db560", "https://discord.com")
console.log("hCaptcha token:",token)
})()
```