# organiccryptoyyc.com Image OCR Endpoint

> organiccryptoyyc.com Image OCR Endpoint is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Extracts text from a remote image URL using Tesseract OCR and returns the recognized text with a confidence score

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/image/ocr
- 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/organiccryptoyyc-com-image-ocr-endpoint-f85f0a31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ip5of-OiH_ze8sNtU9zzT

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 organiccryptoyyc-com-image-ocr-endpoint-f85f0a31
```

Example prompt: Can you extract all the text from this image for me? The image is at https://example.com/receipt.png — I need the raw text and how confident the OCR is.

## When to prefer this

Choose this endpoint when you need to extract text from a publicly accessible image URL and want a confidence score alongside the result. It is priced per-call at $0.01 USDC via x402 micropayment, making it cost-effective for single-image OCR tasks. Prefer it over general-purpose vision APIs when you want a lightweight, metered OCR-only result with Tesseract's output format.

## Known failure modes

- Invalid or inaccessible image URL returns an error response
- Non-image URL (HTML page, PDF, etc.) may yield empty or garbled text
- Very low-resolution or heavily stylized images produce low confidence scores
- Handwritten text recognition accuracy is significantly lower than printed text
- Network timeout if the image host is slow or unreachable

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

A JSON object containing: 'text' (the full string of recognized text extracted from the image), 'source' (always 'tesseract-ocr'), and 'confidence' (a numeric score 0–100 indicating OCR accuracy, e.g. 92.4).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Absolute URL to an image (http or https)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "example text",
  "source": "tesseract-ocr",
  "confidence": 92.4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/organiccryptoyyc-com-image-ocr-endpoint-f85f0a31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
