Match a supplier invoice against purchase orders, cumulative receipts, prior inv
Match a supplier invoice against purchase orders, cumulative receipts, prior invoicing, and tolerance policy before payment approval.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.05listed price per call
n/aprice 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.vrsai.tech/v1/capabilities/invoice_match
| Category | Everything else |
|---|---|
| Provider host | api.vrsai.tech |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"evidence": {
"prior_invoicing_complete": true,
"receipts_complete": true
},
"invoice": {
"currency": "EUR",
"id": "inv_internal_883",
"invoice_number": "INV-883",
"lines": [
{
"id": "line_1",
"line_net_minor": "42000",
"po_line_id": "10",
"price_basis_quantity": "1",
"purchase_order_id": "PO-1001",
"quantity": "10",
"unit_of_measure": "EA",
"unit_price_minor": "4200"
}
],
"subtotal_minor": "42000",
"supplier_id": "supplier_123",
"total_minor": "42000"
},
"match_mode": "three_way",
"policy": {
"unit_price_tolerance_bps": 200
},
"purchase_orders": [
{
"currency": "EUR",
"id": "PO-1001",
"lines": [
{
"id": "10",
"ordered_quantity": "10",
"previously_invoiced_quantity": "0",
"price_basis_quantity": "1",
"unit_of_measure": "EA",
"unit_price_minor": "4000"
}
],
"supplier_id": "supplier_123"
}
],
"receipts": [
{
"id": "GR-55",
"po_line_id": "10",
"purchase_order_id": "PO-1001",
"received_quantity": "10"
}
]
},
"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": {
"type": "object"
},
"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"
}