capmonster-python docs
Solve HCaptcha
Solve HCaptcha
First of all, you need an API key to work. You can get one from here
What you need
- Website key
- Website url
Solve
solve_hcaptcha.py
from capmonster_python import HCaptchaTask
capmonster = HCaptchaTask("API_KEY")task_id = capmonster.create_task("website_url", "website_key")result = capmonster.join_task_result(task_id)print(result.get("gRecaptchaResponse"))