内部工具 · Cloudflare 验证码自动解析

CFSolver
验证码解析服务

Cloudflare Turnstile | Cloudflare Challenge | reCaptcha Invisible

Cloudflare 验证码解析

Cloudflare Turnstile Demo

Cloudflare Challenge Demo

www.demo.com
Verifying you are human by completing the action below.

www.demo.com needs to review the security of your connection before proceeding.

简单易用的 API

只需几行代码,即可在您的应用中集成验证码解决能力。

  • 接口兼容,便捷迁移
    与 2Captcha、YesCaptcha 等站点接口兼容
  • 详细的文档
    Python、JavaScript、Go 等语言均可使用
  • RESTful API 设计
    支持高通量请求
# Create task
curl -X POST https://api.cfsolver.io/createTask \
  -H "Content-Type: application/json" \
  -d '{
    "apiKey": "YOUR_API_KEY",
    "type": "CloudflareChallenge",
    "url": "https://protected-site.com",
    "content": true
  }'

# Then poll result
curl -X POST https://api.cfsolver.io/getTaskResult \
  -H "Content-Type: application/json" \
  -d '{
    "apiKey": "YOUR_API_KEY",
    "taskId": "TASK_ID_FROM_CREATE_RESPONSE"
  }'