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.
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.
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
CaptchaFox pricing.
| Variant | Price / 1,000 | Mode | Status |
|---|---|---|---|
| CaptchaFox | $3.00 | Proxy · Proxyless | Live |
// Billed per successful solve - failed solves cost nothing.All pricing
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.