# Visionex OCR – Image Text Extraction

> Visionex OCR – Image Text Extraction is a paid API for AI agents from visionex.x402tools.xyz, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Extracts text from an image (via URL or Base64) using OCR, returning recognized text with confidence scores and bounding boxes

## Facts

- Endpoint: POST https://visionex.x402tools.xyz/extract
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/visionex-ocr-image-text-extraction-62c8d15a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9gwKEAHbc96czjUvgWNtA

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 visionex-ocr-image-text-extraction-62c8d15a -d '<json body>'
```

Example prompt: Can you extract all the text from this receipt image for me? Here's the URL: https://example.com/receipt.jpg — I need the recognized text along with confidence scores.

## When to prefer this

Choose this endpoint when you need to extract text from images with structured output including confidence scores and spatial bounding box information. Ideal for automating document digitization, reading receipts, invoices, business cards, or any image containing printed or handwritten text. Suitable for pay-per-use pipelines where per-image cost of $0.005 USDC is acceptable.

## Known failure modes

- Image URL is inaccessible or returns a non-image response — likely returns an error or empty result
- Base64 data is malformed or not a valid image format — returns a parsing or decoding error
- Image contains no readable text — returns empty text with low confidence scores
- Image resolution too low or text too blurry for accurate OCR — returns low-confidence partial results
- Unsupported image format — returns format error
- Network timeout fetching remote image URL — returns a timeout or fetch error

## How this service works

Extract text from an image using OCR

## Output

Returns the text content recognized from the image, including confidence scores for each detected text segment and bounding box coordinates indicating where each piece of text appears in the image.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public image URL to fetch"
  },
  "image": {
   "type": "string",
   "description": "Base64-encoded image data"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/visionex-ocr-image-text-extraction-62c8d15a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from visionex.x402tools.xyz](https://www.zero.xyz/host/visionex.x402tools.xyz/llms.txt)
