Save up to 50% with solve packages
Fast Captcha Solving API
Solve CloudFlare Turnstile, WAF challenges, and more in under a second. Built for high-volume applications with flexible pricing.
// Simple JSON request
POST /api/turnstile
{
"sitekey": "0x4AAAAAAA...",
"url": "https://example.com/",
"proxy": "http://user:pass@ip:port"
}
// Response
{
"success": true,
"data": { "token": "0.xxxxx..." }
}Supported Tasks
Solve the most common challenge types
CloudFlare Turnstile
Interactive, Managed, and Invisible web challenges
Speed: < 1s
$0.50/1Kw/ package
CloudFlare WAF
Bypass the 5-second browser verification challenge
Speed: < 1s
$0.70/1Kw/ package
AWS WAF
iOS/Android SDK captcha challenges (not web)
Speed: < 1s
$0.40/1Kw/ package
📦 Solve Packages
Buy in bulk, save more. Up to 50% off standard rates.
Turnstile
1M
$500$0.50/1K
Turnstile
500K
$275$0.55/1K
CF WAF
1M
$700$0.70/1K
AWS WAF
1M
$400$0.40/1K
Why Peak
âš¡
Sub-second Solves
Average solve time under 1 second for all supported challenge types.
✓
High Success Rate
99%+ success rate with automatic retries and error handling.
📦
Flexible Billing
Pay per solve or buy packages and save up to 50% on high volume.
🚀
Unlimited Scale
Scale to thousands of solves per minute with no restrictions.
Simple Integration
Get started with just a few lines of code
Check Balance
GET https://api.peak.fo/getbalance
X-Api-Key: your_api_key
// Pay-per-solve key
{
"type": "balance",
"balance": 150.50
}
// Package key
{
"type": "package",
"remaining_solves": 450000,
"allowed_tasks": ["turnstile"]
}Solve Challenge
POST https://api.peak.fo/solve
X-Api-Key: your_api_key
{
"task": "turnstile",
"data": {
"sitekey": "0x4AAAA...",
"url": "https://...",
"proxy": "http://..."
}
}