🧩 BimbaSolver API

Self-hosted CF/Captcha Bypass API — FREE SELF-HOSTED

📋 Supported Tasks

✅ Cloudflare Turnstile widget — solves turnstile challenges

✅ Cloudflare Managed Challenge — bypasses CF interstitial, returns cf_clearance cookie

✅ Combined CF + Turnstile — solves both in the same browser session (cookie-consistent)

⚡ API Endpoints

POST /solve/turnstile

Body: {"sitekey":"...", "url":"...", "proxy":"host:port:user:pass", "action":"..."}
Response: {"success":true, "token":"...", "elapsed":12.3}

Synchronous — solves Turnstile and returns token directly. Proxy and action are optional.
POST /solve/cf-challenge

Body: {"url":"https://target-site.com", "proxy":"host:port:user:pass"}
Response: {"success":true, "cf_clearance":"...", "user_agent":"...", "cookies":{...}, "html":"..."}

Synchronous — navigates to CF-protected site, solves challenge, returns cookies + page HTML.
POST /solve/cf-turnstile

Body: {"url":"https://target-site.com", "sitekey":"...", "proxy":"host:port:user:pass", "action":"..."}
Response: {"success":true, "cf_clearance":"...", "turnstile_token":"...", "cookies":{...}}

Synchronous — solves CF challenge then Turnstile in the same browser session. Ensures cookie consistency.
GET /health

Response: {"status":"ok", "solver":"..."}

Health check — returns API status and backend solver URL.

🔑 Authentication

Some endpoints require an API key via X-API-Key header or api_key query parameter.

Internal endpoints (solve/*) are accessible without auth when called locally.

BimbaSolver v1.0 — Self-hosted CF/Captcha Bypass