Overview

Turnstile solving, one API.

Non-interactive Cloudflare Turnstile challenges, cleared with real browser fingerprint emulation. Shipping soon.

No solving farms, no browser fleets to babysit. Send the site key and URL to /createTask, poll for the token, drop it into your request.

How we solve it
01 · DETECT

Send the challenge

Site key, URL and type to /createTask.

02 · SOLVE

Neural solver

ML + fingerprint emulation crack it.

03 · SHIP

Get your token

Poll /getTaskResult, use the token.

Quickstart

Ship it in five lines.

# pip install capbypass
from capbypass import Client

client = Client(api_key="cb_live_...")

token = client.solve(
    type="TurnstileTask",
    websiteURL="https://target.com",
    websiteKey="0x4AAAAA...abc",
)
print(token) # solved in 430ms
// npm i @capbypass/sdk
import { Client } from "@capbypass/sdk";

const client = new Client({ apiKey: "cb_live_..." });

const token = await client.solve({
  type: "TurnstileTask",
  websiteURL: "https://target.com",
  websiteKey: "0x4AAAAA...abc",
});
console.log(token); // solved in 430ms
// go get github.com/capbypass/go
client := capbypass.New("cb_live_...")

token, _ := client.Solve(capbypass.Task{
    Type: "TurnstileTask",
    WebsiteURL: "https://target.com",
    WebsiteKey: "0x4AAAAA...abc",
})
fmt.Println(token) // solved in 430ms
Pricing

Turnstile pricing.

VariantPrice / 1,000ModeStatus
Turnstile$3.00Proxy · ProxylessSoon
// Billed per successful solve - failed solves cost nothing.All pricing
Other solvers
FAQ
When does Turnstile go live?+
Cloudflare Turnstile is shipping soon. reCAPTCHA v3, AWS WAF, GeeTest and CaptchaFox are live today.
What is Turnstile?+
Cloudflare's privacy-first, non-interactive challenge that replaces the classic captcha with background verification.
What will the solver return?+
A valid cf-turnstile-response token to submit with your request.
Proxy or proxyless?+
Both modes will be supported, like every other task type.