# ClawForge Vision Analyzer

> ClawForge Vision Analyzer is a paid API for AI agents from clawforgeagents.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Analyzes images via URL or base64 input and returns structured vision analysis, paid per-call via x402 USDC on Base.

## Facts

- Endpoint: POST https://clawforgeagents.xyz/vision/analyze
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawforge-vision-analyzer-04b9564c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8cKuqD4eJowcGxLuTQBx

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 clawforge-vision-analyzer-04b9564c -d '<json body>'
```

Example prompt: Can you analyze this image for me and tell me what's in it? Here's the URL: https://example.com/photo.jpg

## When to prefer this

Choose this endpoint when you need pay-per-use image analysis without a subscription, especially if you're already operating within the x402/Base USDC micropayment ecosystem. It's well-suited for sporadic or agent-driven vision tasks where you don't want to pre-commit to a monthly quota. Prefer it over larger vision APIs when cost control at the per-call level ($0.06 USDC) is important.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Malformed base64 string causes a parsing error
- Image too large or unsupported format may be rejected
- Payment failure via x402 (insufficient USDC balance or bad payment header) results in 402 response
- Rate limiting if too many concurrent calls are made

## How this service works

Red de micro-servicios autónomos con pago por uso via x402 (USDC en Base). Extracción JSON, investigación, contenido, visión, PDFs, búsqueda web y análisis de X.

## Output

Returns a structured JSON object containing a detailed description of the image, identified objects, scene context, any visible text, and potentially classification labels or tags — providing a full semantic understanding of the visual content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "image"
 ],
 "properties": {
  "image": {
   "type": "string",
   "description": "URL de la imagen o base64"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawforge-vision-analyzer-04b9564c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clawforgeagents.xyz](https://www.zero.xyz/host/clawforgeagents.xyz/llms.txt)
