Extract Markdown, CSV, and plain-text tables into clean structured rows for agen
Extract Markdown, CSV, and plain-text tables into clean structured rows for agents and business workflows.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
630 msmedian answer time
$0.15listed price per call
$0.15price 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://i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws/v1/document-table-extractor
| Category | Search and research |
|---|---|
| Provider host | i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws |
| 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.15 | 630 ms |
Example input (from the provider)
{
"body": {
"document": "| Item | Amount |\n| --- | --- |\n| API | 10 |",
"format": "markdown",
"headerRow": true
},
"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": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"document": {
"type": "string"
},
"format": {
"default": "auto",
"enum": [
"auto",
"markdown",
"csv",
"text"
],
"type": "string"
},
"headerRow": {
"default": true,
"type": "boolean"
}
},
"required": [
"document",
"format",
"headerRow"
],
"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": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"limitation": {
"type": "string"
},
"tables": {
"items": {
"additionalProperties": false,
"properties": {
"headers": {
"items": {
"type": "string"
},
"type": "array"
},
"rowCount": {
"maximum": 9007199254740991,
"minimum": 0,
"type": "integer"
},
"rows": {
"items": {
"items": {
"type": "string"
},
"type": "array"
},
"type": "array"
}
},
"required": [
"headers",
"rows",
"rowCount"
],
"type": "object"
},
"type": "array"
},
"totalRows": {
"maximum": 9007199254740991,
"minimum": 0,
"type": "integer"
},
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"tables",
"totalRows",
"warnings",
"limitation"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}