Send a picture, either as a public web address or as base64-encoded image data,
Send a picture, either as a public web address or as base64-encoded image data, and get back the plain text found inside it.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://ocr.underscoredone.com/read
| Category | Image and media |
|---|---|
| Provider host | ocr.underscoredone.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"image_url": "https://example.com/receipt.png",
"lang": "eng"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"image_base64": {
"description": "The image encoded as base64 text. Leave this out if you are sending a web address instead.",
"type": "string"
},
"image_url": {
"description": "A public web address pointing to the image file. Leave this out if you are sending the image as base64 text instead.",
"type": "string"
},
"lang": {
"description": "The language of the text in the image. Only 'eng' (English) is supported at the moment.",
"type": "string"
}
},
"required": [],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"api_version": {
"type": "string"
},
"confidence": {
"type": "number"
},
"lang": {
"type": "string"
},
"source": {
"type": "string"
},
"text": {
"type": "string"
},
"word_count": {
"type": "integer"
}
},
"required": [
"api_version",
"text",
"word_count",
"confidence",
"lang",
"source"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}