Extract and validate structured expense data from receipt text or a provider-neu
Extract and validate structured expense data from receipt text or a provider-neutral receipt extraction. Use when an agent needs merchant, date, tax, total, line items, confidence, duplicate detection, and arithmetic validation before creating or reconciling an expense. The result is advisory and always requires human review.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1043 msmedian answer time
$0.25listed price per call
$0.25price 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://agents.getardaro.com/v1/receipt-intelligence/analyze
| Category | Commerce and shopping |
|---|---|
| Provider host | agents.getardaro.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.25 | 1043 ms |
Example input (from the provider)
{
"body": {
"contract_version": "ardaro.agent-receipt-intelligence.request.v1",
"existing_fingerprints": [],
"input": {
"analysis": {
"currency": {
"confidence": 99,
"value": "USD"
},
"line_items": [
{
"amount": {
"confidence": 98,
"value": "100.00"
},
"description": {
"confidence": 98,
"value": "Synthetic framing material"
},
"product_code": {
"confidence": 98,
"value": "SYN-001"
},
"quantity": {
"confidence": 98,
"value": "2"
},
"unit_price": {
"confidence": 98,
"value": "50.00"
}
}
],
"purchase_date": {
"confidence": 99,
"value": "2026-08-18"
},
"purchase_order": {
"confidence": 95,
"value": "PO-SYN-100"
},
"receipt_reference": {
"confidence": 95,
"value": "SYN-RECEIPT-100"
},
"subtotal": {
"confidence": 99,
"value": "100.00"
},
"tax": {
"confidence": 99,
"value": "7.00"
},
"total": {
"confidence": 99,
"value": "107.00"
},
"vendor": {
"confidence": 99,
"value": "Synthetic Building Supply"
}
},
"kind": "structured"
}
},
"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": {
"contract_version": {
"const": "ardaro.agent-receipt-intelligence.request.v1"
},
"existing_fingerprints": {
"items": {
"pattern": "^[0-9a-f]{64}$",
"type": "string"
},
"maxItems": 10000,
"type": "array"
},
"input": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"kind": {
"const": "text"
},
"text": {
"maxLength": 20000,
"minLength": 1,
"type": "string"
}
},
"required": [
"kind",
"text"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"analysis": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"currency": {
"oneOf": [
{
"maxLength": 3,
"minLength": 1,
"type": "string"
},
{
"type": "number"
},
{
"additionalProperties": false,
"properties": {
"confidence": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"value": {
"oneOf": [
{
"maxLength": 3,
"minLength": 1,
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"value"
],
"type": "object"
}
]
},
"line_items": {
"items": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"amount": {
"oneOf": [
{
"maxLength": 80,
"minLength": 1,
"type": "string"
},
{
"type": "number"
},
{
"additionalProperties": false,
"properties": {
"confidence": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"value": {
"oneOf": [
{
"maxLength": 80,
"minLength": 1,
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"value"
],
"type": "object"
}
]
},
"description": {
"oneOf": [
{
"maxLength": 240,
"minLength": 1,
"type": "string"
},
{
"type": "number"
},
{
"additionalProperties": false,
"properties": {
"confidence": {
"maximum": 100,
"minimum": 0,
"type": "number"
},