Documentation
API Documentation
Complete guide to integrating CapSolution's Turnstile solver API. 99.2% success rate, ~2.3s average solve time.
Quick Start Guide
Get started with CapSolution in 3 simple steps.
1Create Account
Sign up for free and receive 50 credits to test the API.
2Generate API Key
Go to Dashboard > API Keys and create a new key.
3Start Solving
Use the API to solve Turnstile captchas.
Basic Example
Simple request to solve a Turnstile captcha
cURL
# Create a Turnstile solving task
curl -X POST https://capsolution.xyz/api/solver/createTask \
-H "Content-Type: application/json" \
-d '{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "TurnstileTask",
"websiteURL": "https://example.com",
"websiteKey": "0x4AAAA..."
}
}'
# Response: {"errorId": 0, "taskId": "abc123..."}
# Get task result (poll until ready)
curl -X POST https://capsolution.xyz/api/solver/getTaskResult \
-H "Content-Type: application/json" \
-d '{
"clientKey": "YOUR_API_KEY",
"taskId": "abc123..."
}'
# Response: {"errorId": 0, "status": "ready", "solution": {"token": "0.xxx..."}}
# Check balance
curl -X POST https://capsolution.xyz/api/solver/getBalance \
-H "Content-Type: application/json" \
-d '{"clientKey": "YOUR_API_KEY"}'