Overview

CaptchaFox solving, one API.

Interactive CaptchaFox proof challenges, handled end to end - challenge in, token out.

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="CaptchaFoxTask",
    websiteURL="https://signup.gmx.com",
    websiteKey="sk_...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: "CaptchaFoxTask",
  websiteURL: "https://signup.gmx.com",
  websiteKey: "sk_...abc",
});
console.log(token); // solved in 430ms
// go get github.com/capbypass/go
client := capbypass.New("cb_live_...")

token, _ := client.Solve(capbypass.Task{
    Type: "CaptchaFoxTask",
    WebsiteURL: "https://signup.gmx.com",
    WebsiteKey: "sk_...abc",
})
fmt.Println(token) // solved in 430ms
Pricing

CaptchaFox pricing.

VariantPrice / 1,000ModeStatus
CaptchaFox$3.00Proxy · ProxylessLive
// Billed per successful solve - failed solves cost nothing.All pricing
Other solvers
FAQ
What is CaptchaFox?+
A GDPR-compliant, European bot-protection CAPTCHA. It runs a token challenge (slide, one-click or audio) backed by proof-of-work and behavioral signals; we return the verification token.
Which sites does it work on?+
All CaptchaFox-protected sites, including United Internet properties (mail.com, gmx.com, web.de) that use a dedicated host - routing is handled automatically.
What do you need from me?+
The page URL and the CaptchaFox site key (it starts with sk_). That is it.
Proxy or proxyless?+
Both. The ProxyLess task uses our proxy pool; the standard task takes your own proxy.