Cloudflare Bypass API

Tembus CF Challenge
100% Works

REST API untuk bypass Cloudflare Turnstile, WAF Session, reCAPTCHA, dan CF Clearance. Deploy di VPS, langsung jalan.

Coba Sekarang Dokumentasi
5
Modes
~5s
Avg Solve
99%
Success Rate
No Limit

Capabilities
Supported Modes
Semua jenis proteksi Cloudflare bisa ditembus. Pilih mode sesuai kebutuhan.
turnstile-min
Turnstile Minimal
Solve Cloudflare Turnstile challenge dengan headless browser. Return token siap pakai. Butuh URL + sitekey.
turnstile-max
Turnstile Full
Full browser simulation untuk Turnstile yang lebih ketat. Anti-bot fingerprint lengkap.
waf-session
WAF Session
Ambil cf_clearance cookie + session headers lengkap. Langsung bisa dipakai di request berikutnya.
source
Get Source
Ambil HTML source halaman setelah melewati CF challenge. Cookie + UA otomatis disertakan.
recaptcha-v2
reCAPTCHA v2
Solve Google reCAPTCHA v2 challenge. Return g-recaptcha-response token. Butuh URL + sitekey.

How It Works
Cara Kerja
4 langkah simple untuk bypass CF challenge.
01
Kirim Request
POST ke /solve dengan URL target, mode, dan sitekey (kalau perlu).
02
Launch Browser
Server launch headless Chromium dengan anti-detection flags aktif semua.
03
Solve Challenge
Browser render halaman, inject script, dan tunggu token/cookie dari CF.
04
Return Token
Token dikirim balik dalam JSON. Langsung pakai di request lo berikutnya.

Try It
Live Demo
Test API langsung dari sini.
POST /solve

Integration
Quick Start
Integrasi ke project lo dalam hitungan menit.
Node.js · fetch
const res = await fetch('https://cf.solver.v0-syz.web.id/solve', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    url: 'https://spotdown.org',
    siteKey: '0x4AAAAAACrWMhU5hqsstO80',
    mode: 'turnstile-min'
  })
})
const { data } = await res.json()
console.log(data.token) // 0.ABCDEFGHxxx...
Python · requests
import requests

r = requests.post('https://cf.solver.v0-syz.web.id/solve', json={
    'url': 'https://spotdown.org',
    'siteKey': '0x4AAAAAACrWMhU5hqsstO80',
    'mode': 'turnstile-min'
})
token = r.json()['data']['token']
print(token)
cURL
curl -X POST https://cf.solver.v0-syz.web.id/solve \
  -H "Content-Type: application/json" \
  -d '{"url":"https://spotdown.org","siteKey":"0x4AAAAAACrWMhU5hqsstO80","mode":"turnstile-min"}'
Response
{
  "status": true,
  "data": {
    "token": "0.ABCDEFGHIJKLMNOPxxx..."
  }
}

// waf-session response:
{
  "status": true,
  "data": {
    "cf_cookies": { "cf_clearance": "xxx..." },
    "cookie_string": "cf_clearance=xxx; __cf_bm=yyy",
    "user_agent": "Mozilla/5.0...",
    "headers": { "Cookie": "...", "User-Agent": "..." }
  }
}