# AWS WAF

Solve AWS WAF captcha challenges. Task types, parameters, and code examples.

Solves AWS WAF (Web Application Firewall) challenge pages.


# Task Types

Task Type Description
AwsWafTaskProxyless Without proxy
AwsWafTask With your proxy

# Parameters

Parameter Type Required Description
websiteURL string Target URL protected by AWS WAF
awsKey string AWS WAF key (if known)

# Identifying AWS WAF

Look for: challenge page with AWS branding, awswaf in cookies/headers, or requests to *.awswaf.com.


# Example

response = requests.post("https://v1.captchasolv.com/solve", json={
    "clientKey": "YOUR_API_KEY",
    "task": {
        "type": "AwsWafTaskProxyless",
        "websiteURL": "https://example.com"
    }
}, timeout=130)

solution = response.json()["solution"]
# Use: solution["token"] (cookies), solution["userAgent"]
const response = await axios.post('https://v1.captchasolv.com/solve', {
    clientKey: 'YOUR_API_KEY',
    task: {
        type: 'AwsWafTaskProxyless',
        websiteURL: 'https://example.com'
    }
}, { timeout: 130000 });

const { token, userAgent } = response.data.solution;

# Response

{
  "errorId": 0,
  "solution": {
    "token": "aws-waf-token=...",
    "userAgent": "Mozilla/5.0..."
  }
}

Use token as cookies and reuse userAgent. Provide the exact challenge URL for best results. Tokens expire — solve fresh if blocked.