solve_captcha
Solve web CAPTCHA challenges (Turnstile, hCaptcha, reCAPTCHA v2, Arkose, Cloudflare) and return a valid solution token. Requires x402 payment on Base.
When to use: Use when an agent encounters a bot wall or CAPTCHA challenge during automated web workflows. When NOT to use: Do NOT use for non-CAPTCHA auth, 2FA/OTP codes, or general login forms.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The full target page URL where the CAPTCHA challenge is hosted. | |
| type | Yes | The specific type of CAPTCHA challenge encountered on the target page. | |
| sitekey | Yes | The CAPTCHA sitekey parameter extracted from the target page DOM or iframe. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The resulting CAPTCHA response token to submit to the form | |
| method | No | Solving method or backend engine used | |
| solved | Yes | Whether the CAPTCHA challenge was successfully solved | |
| elapsed | No | Time taken in seconds to solve the challenge |