capmonster-python docs
Solve FunCaptcha
Solve FunCaptcha
First of all, you need an API key to work. You can get one from here
What you need
- Website's public key
- Website url
Get public website key
Mostly, you can find the key in data-pkey attribute.
<div id="funcaptcha" data-pkey="THAT_ONE"></div>
Solve
solve_funcaptcha.py
from capmonster_python import FuncaptchaTask
capmonster = FuncaptchaTask("API_KEY")task_id = capmonster.create_task("website_url", "website_public_key")result = capmonster.join_task_result(task_id)print(result.get("token"))