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.
- Host: GitHub
- URL: https://github.com/aydonlol/capmonster-api-wrapper
- Owner: aydonlol
- Created: 2022-03-13T20:04:45.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-13T20:05:04.000Z (about 4 years ago)
- Last Synced: 2024-11-06T12:43:37.552Z (over 1 year ago)
- Topics: capmonster, capmonster-api, capmonster-cloud, capmonster-js, captcha, captcha-solver, captcha-solving, captchasolving, funcaptcha, hcaptcha, recaptcha
- Language: JavaScript
- Homepage: https://neumatic.club/
- Size: 1.95 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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)
})()
```