✅ CapMonster.Cloud — Fast, Reliable CAPTCHA Solving for Automation & Scraping
Official Python SDK for the CapMonster Cloud API. Use this package when you want to create tasks and retrieve solutions from Python applications or scripts.
- Package: capmonstercloudclient on PyPI
- Documentation: docs.capmonster.cloud
- Dashboard / API key: dash.capmonster.cloud
python3 -m pip install capmonstercloudclientNeed to test before depositing? Contact support and we’ll add trial credits to your account.
import asyncio
from capmonstercloudclient import CapMonsterClient, ClientOptions
from capmonstercloudclient.requests import RecaptchaV2Request
client_options = ClientOptions(api_key="<YOUR_API_KEY>")
cap_monster_client = CapMonsterClient(options=client_options)
recaptcha2request = RecaptchaV2Request(
websiteUrl="https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high",
websiteKey="6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd",
)
async def solve_captcha():
return await cap_monster_client.solve_captcha(recaptcha2request)
response = asyncio.run(solve_captcha())
print(response)Supported task families include reCAPTCHA, GeeTest, Turnstile, image-to-text, and additional task types documented in the public docs.
Supported request classes:
- AltchaCustomTaskRequest
- AlibabaCustomTaskRequest
- AmazonWafRequest
- BasiliskCustomTaskRequest
- BinanceTaskRequest
- CastleCustomTaskRequest
- DataDomeCustomTaskRequest
- FriendlyCaptchaRequest
- FuncaptchaRequest
- FunCaptchaComplexImageTaskRequest
- GeetestRequest
- HuntCustomTaskRequest
- ImageToTextRequest
- ImpervaCustomTaskRequest
- MTCaptchaRequest
- ProsopoTaskRequest
- RecognitionComplexImageTaskRequest
- RecaptchaComplexImageTaskRequest
- RecaptchaV2EnterpriseRequest
- RecaptchaV2Request
- RecaptchaV3EnterpriseRequest
- RecaptchaV3ProxylessRequest
- TemuCustomTaskRequest
- TenDiCustomTaskRequest
- TspdCustomTaskRequest
- TurnstileRequest
- YidunRequest
⭐️ If you find this project useful, please give it a star on GitHub!
