Extract text from an image by URL (OCR): PNG/JPG/WEBP/TIFF/BMP of a screenshot, scan, rece
Extract text from an image by URL (OCR): PNG/JPG/WEBP/TIFF/BMP of a screenshot, scan, receipt, chart or photo -> the readable text, via the Tesseract engine. Keyless, no LLM. Use it to read text an agent can only see as an image. SSRF-guarded; max ~10MB.
5000 (raw units)
price
9
calls / 30d
1
unique payers
2026-09-18
updated
Provider
web.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"lang": "eng",
"url": "https://example.com/receipt.png"
},
"type": "http"
},
"output": {
"example": {
"chars": 128,
"engine": "tesseract",
"text": "TOTAL $12.40 ...",
"url": "https://example.com/receipt.png"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"lang": {
"default": "eng",
"description": "Tesseract language code (default eng).",
"type": "string"
},
"url": {
"description": "Public http(s) URL of the image.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"chars": {
"type": "integer"
},
"engine": {
"type": "string"
},
"text": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://web.cyberwarex.com/ocr" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://web.cyberwarex.com/ocr");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://web.cyberwarex.com/ocr")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6833.json, and this resource appears in /discovery/resources and /discovery/search.