Extract text and ruled tables from a PDF (10 MiB, 20 pages, no OCR)
Extract text and ruled tables from a PDF (10 MiB, 20 pages, no OCR).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1316 msmedian answer time
$0.1listed price per call
$0.1price 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://api.dekist42.com/v1/extract
| Category | Search and research |
|---|---|
| Provider host | api.dekist42.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.1 | 1316 ms |
Example input (from the provider)
{
"body": {
"pdf_base64": "JVBERi0..."
},
"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": {
"pdf_base64": {
"description": "Base64 PDF bytes; maximum 10 MiB and 20 pages. No URLs.",
"maxLength": 13981016,
"minLength": 1,
"title": "Pdf Base64",
"type": "string"
}
},
"required": [
"pdf_base64"
],
"title": "ExtractionInput",
"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": {
"document_sha256": {
"title": "Document Sha256",
"type": "string"
},
"engine": {
"title": "Engine",
"type": "string"
},
"page_count": {
"title": "Page Count",
"type": "integer"
},
"pages": {
"items": {
"properties": {
"height": {
"title": "Height",
"type": "number"
},
"page": {
"description": "One-based source page number",
"minimum": 1,
"title": "Page",
"type": "integer"
},
"tables": {
"items": {
"properties": {
"bbox": {
"description": "x0, top, x1, bottom; PDF points",
"maxItems": 4,
"minItems": 4,
"prefixItems": [
{
"type": "number"
},
{
"type": "number"
},
{
"type": "number"
},
{
"type": "number"
}
],
"title": "Bbox",
"type": "array"
},
"rows": {
"items": {
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": "array"
},
"title": "Rows",
"type": "array"
}
},
"required": [
"bbox",
"rows"
],
"title": "Table",
"type": "object"
},
"title": "Tables",
"type": "array"
},
"text": {
"title": "Text",
"type": "string"
},
"width": {
"title": "Width",
"type": "number"
}
},
"required": [
"page",
"width",
"height",
"text",
"tables"
],
"title": "PageResult",
"type": "object"
},
"title": "Pages",
"type": "array"
},
"schema_version": {
"title": "Schema Version",
"type": "string"
},
"warnings": {
"items": {
"type": "string"
},
"title": "Warnings",
"type": "array"
}
},
"required": [
"schema_version",
"document_sha256",
"page_count",
"pages",
"warnings",
"engine"
],
"title": "ExtractionResult",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}