Overview

AWS WAF solving, one API.

Token and interactive AWS WAF CAPTCHA, desktop and mobile. Smart fingerprint emulation clears the challenge and hands back a valid token.

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

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

AWS WAF pricing.

VariantPrice / 1,000ModeStatus
AWS WAFincl. mobile$1.30Proxy · ProxylessLive
// Billed per successful solve - failed solves cost nothing.All pricing
Other solvers
FAQ
What does the solver return?+
A valid aws-waf-token cookie (plus the raw token) that you attach to your requests to clear the AWS WAF challenge.
Can you solve AWS WAF inside mobile apps?+
Yes. The mobile task type mints a token from the genuine AWS WAF mobile SDK on real devices - no URL, parameters or proxy needed.
Do I have to extract the challenge parameters myself?+
No. The key, iv, context and challenge scripts are auto-detected. You can pass them to skip a step, but they are optional.
Proxy or proxyless?+
Both. The ProxyLess web task uses our infrastructure; the standard task takes your own proxy.