# Freysa Intelligence CAPTCHA Solver

> Freysa Intelligence CAPTCHA Solver is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Solves text and reCAPTCHA v2 challenges from an image URL or base64-encoded image, returning the solved text and a confidence score.

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/captcha-solve
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-captcha-solver-5fb5dbee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pV02nH-GrIUFmqvIGkNXS

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 freysa-intelligence-captcha-solver-5fb5dbee
```

Example prompt: Solve this text CAPTCHA for me — here's the image URL: https://example.com/captcha.png — I need the answer text and how confident you are.

## When to prefer this

Choose this endpoint when you need pay-per-call CAPTCHA solving with no subscription, billed in USDC via x402 on Base. It supports both plain text CAPTCHAs and reCAPTCHA v2 image challenges, and returns a confidence score to help downstream logic decide whether to retry. Best for autonomous agents that encounter CAPTCHAs intermittently during web automation workflows.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Unsupported CAPTCHA type results in failure
- Low confidence score indicates uncertain solution that may be wrong
- Base64 data malformed or too large causes processing error
- reCAPTCHA v2 audio challenges not supported (only image-based)

## How this service works

Security intelligence layer for autonomous agents. On-chain security, token risk analysis, wallet forensics, and transaction simulation. Pay-per-call via x402 on Base.

## Output

Returns a JSON object with the solved CAPTCHA text (the answer to type in), the method the solver used, and a confidence score between 0 and 1 indicating how certain the solution is.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "image_url": {
   "type": "string",
   "description": "URL of CAPTCHA image to solve"
  },
  "captcha_type": {
   "enum": [
    "text",
    "recaptcha_v2"
   ],
   "type": "string",
   "description": "Type of CAPTCHA"
  },
  "image_base64": {
   "type": "string",
   "description": "Base64-encoded CAPTCHA image data"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "method": {
   "type": "string",
   "description": "Method used to solve"
  },
  "solved": {
   "type": "string",
   "description": "Solved CAPTCHA text"
  },
  "confidence": {
   "type": "number",
   "description": "Confidence score 0-1"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-captcha-solver-5fb5dbee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
