Extract JSON from text — pull structured fields (invoice data, contact info, pro
Extract JSON from text — pull structured fields (invoice data, contact info, product specs, any custom schema) out of unstructured text, via Claude Haiku 4.5. JSON body: {text: string (max 8000 chars), schema: object (JSON Schema describing the fields to extract)}.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
319 msmedian answer time
$0.02listed price per call
$0.02price 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://x402-seller-0ay3.onrender.com/api/ai/extract
| Category | Code and developer |
|---|---|
| Provider host | x402-seller-0ay3.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 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.02 | 319 ms |
Example input (from the provider)
{
"body": {
"schema": {
"properties": {
"customer": {
"type": "string"
},
"due_date": {
"type": "string"
},
"invoice_number": {
"type": "string"
},
"total": {
"type": "number"
}
},
"type": "object"
},
"text": "Invoice #4521, billed to Jane Doe, total $340.00, due 2026-09-15."
},
"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": {
"properties": {
"schema": {
"description": "JSON Schema describing the fields to extract.",
"type": "object"
},
"text": {
"description": "Source text (max 8000 chars).",
"type": "string"
}
},
"required": [
"text",
"schema"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}