How to get started with CapMonster Node.js SDK #40
Unanswered
evgeniykornev
asked this question in
Q&A
Replies: 1 comment
|
@evgeniykornev Thanks for putting this quick-start guide together! For anyone who learns best by looking at code, here is a quick Node.js snippet putting the steps above together to solve a reCAPTCHA v2. It creates the task and polls for the result as recommended: Hope this helps someone get up and running even faster! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Q: How do I get an API key?
Create an account at capmonster.cloud, top up your balance, and copy your API key from the Dashboard.
Q: How do I create my first task?
Use
createTaskwith the relevant task type — RecaptchaV2Task, TurnstileTask, or GeeTestTask — passing your API key and target website URL.Q: How do I get the solved result?
Poll
getTaskResultwith the task ID returned bycreateTask. Most captchas resolve within 300ms–6s.Q: Where can I ask questions or report issues?
Right here in Discussions for general questions, or in Issues for bugs. Full API reference: github.com/CapMonsterCloud/capmonster-captcha-solver-docs
All reactions