Get from zero to solving captchas in under 2 minutes.Step 1: Create Your Account#
2.
Sign up with email or OAuth (GitHub, Google, Discord)
3.
Verify your email if using email signup
Step 2: Get Your API Key#
3.
Give it a name (e.g., "Development", "Production")
4.
Copy and save the key — you won't see it again!
Your key looks like: sk_live_aBcDeFgHiJkLmNoPqRsTuVwXyZ...Step 3: Claim Free Credits#
Every account gets 100 free credits daily:2.
Click the green "Claim 100 Free Credits" button
3.
Done! You now have credits to start solving
Step 4: Make Your First Request#
Using cURL#
Using Python#
Using JavaScript/Node.js#
Step 5: Use the Solution#
Once you have the token, submit it with your form:Understanding the Response#
All solve endpoints return the same structure:{
"success": true,
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"result": {
"token": "0.AaAAAABBBBCCCC..."
},
"solve_time_ms": 2543,
"cost_credits": 0.5
}
| Field | Description |
|---|
success | true if solved, false if failed |
request_id | Unique ID for tracking/debugging |
result | The solution (format varies by captcha type) |
solve_time_ms | How long the solve took |
cost_credits | Credits charged (0 if failed) |
What's Next?#
Modified at 2025-12-02 02:26:30