#
Getting Started
Get started with CaptchaSolv API. Create your account, get your API key, and solve your first captcha in minutes.
#
Registration
- Join our Discord server
- Use
/panelto create your account and get your API key - Use
/claimdaily for 100 free captcha solves
#
Base URL
https://v1.captchasolv.com
#
First Request
import requests
response = requests.post("https://v1.captchasolv.com/solve", json={
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TurnstileTaskProxyless",
"websiteURL": "https://example.com",
"websiteKey": "0x4AAAAAAABS7vwvV6VFfMcD"
}
}, timeout=130)
result = response.json()
print(result["solution"]["token"])
Include your API key in the clientKey field of every request.
Never share your API key publicly or commit it to version control.
#
Next Steps