Compare invoice and receipt text for matching document numbers and totals with a
Compare invoice and receipt text for matching document numbers and totals with a configurable amount tolerance.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
858 msmedian answer time
$0.2listed price per call
$0.2price 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/invoice-receipt-matcher
| Category | Everything else |
|---|---|
| Provider host | i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 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.2 | 858 ms |
Example input (from the provider)
{
"body": {
"amountTolerance": 0.01,
"invoiceText": "Invoice #INV-100 Total: $125.00",
"receiptText": "Receipt #INV-100 Paid: $125.00"
},
"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": {
"amountTolerance": {
"default": 0.01,
"minimum": 0,
"type": "number"
},
"invoiceText": {
"type": "string"
},
"receiptText": {
"type": "string"
}
},
"required": [
"invoiceText",
"receiptText",
"amountTolerance"
],
"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": {
"differences": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"type": "string"
},
"invoice": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"message": {
"type": "string"
},
"receipt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"field",
"invoice",
"receipt",
"message"
],
"type": "object"
},
"type": "array"
},
"invoiceNumber": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"invoiceTotal": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"limitation": {
"type": "string"
},
"matched": {
"type": "boolean"
},
"receiptTotal": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"score": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"matched",
"score",
"invoiceNumber",
"invoiceTotal",
"receiptTotal",
"differences",
"limitation"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}