# 2Captcha CAPTCHA Solver via Vaaya

> 2Captcha CAPTCHA Solver via Vaaya is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Submits a CAPTCHA solving task (reCAPTCHA, Turnstile, hCaptcha, or image CAPTCHA) to the 2Captcha service and returns a task ID for polling the result

## Facts

- Endpoint: POST https://vaaya.ai/api/run/twocaptcha/solve
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2captcha-captcha-solver-via-vaaya-1ac5db54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7uJB6TUowGt7jchuoLuAQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2captcha-captcha-solver-via-vaaya-1ac5db54 -d '<json body>'
```

Example prompt: I need to solve a reCAPTCHA v2 on a site — submit a captcha task using the 2Captcha solver with the site key '6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-' and the page URL 'https://example.com/login', then poll for the result.

## When to prefer this

Use this endpoint when your automated workflow encounters a CAPTCHA challenge (reCAPTCHA v2/v3, Turnstile, hCaptcha, or image CAPTCHA) that blocks progression. Prefer this over browser-based manual solving when you need programmatic, scalable captcha resolution at low cost (~0.3¢ per solve). Pair with the twocaptcha:result polling endpoint to retrieve the solution token.

## Known failure modes

- Invalid or malformed task object returns a 400 error
- Unsupported captcha type causes task rejection
- Insufficient 2Captcha balance results in an error response
- Task times out if the captcha cannot be solved within the service SLA
- Missing required task fields (e.g. sitekey, pageurl) cause validation errors

## How this service works

2Captcha — submit a captcha task (reCAPTCHA, Turnstile, hCaptcha, image; ~0.3¢). Params: `task` object per 2Captcha createTask schema. Poll with twocaptcha:result.

## Output

Returns a task ID (taskId) that can be used to poll the companion 'twocaptcha:result' endpoint for the completed captcha solution token, which can then be injected into the target website's form or API.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "task"
     ],
     "properties": {
      "task": {
       "type": "object",
       "properties": {},
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2captcha-captcha-solver-via-vaaya-1ac5db54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
