# Payment Receipt Reconciler

> Payment Receipt Reconciler is a paid API for AI agents from phion.systems, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Reconciles payment and receipt fields to verify that payment records match corresponding receipt data

## Facts

- Endpoint: POST https://phion.systems/v1/paid/trust/payment-receipt-reconciler
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payment-receipt-reconciler-52b0b188
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F31HqnBnk2FBjYuDeePIq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability payment-receipt-reconciler-52b0b188 -d '<json body>'
```

Example prompt: Can you check whether this payment record matches the receipt — the payment shows $142.50 charged to order #ORD-8821 on May 15th, but the receipt says $140.00 for the same order? I need to know if the fields reconcile or where they diverge.

## When to prefer this

Choose this endpoint when you need to programmatically verify that a payment record and its corresponding receipt are consistent field-by-field, especially in agentic workflows where financial accuracy must be confirmed before proceeding. Prefer it over manual reconciliation or generic validation endpoints when you specifically need payment-receipt domain logic.

## Known failure modes

- Missing or malformed payment fields cause validation failure
- Receipt data in incompatible format returns parse error
- Empty or null input fields result in incomplete reconciliation
- Network timeout or service unavailability returns 5xx error
- Payment amount format mismatch (e.g. string vs numeric) causes field comparison failure

## How this service works

Reconcile payment and receipt fields

## Output

A reconciliation result indicating whether payment and receipt fields match, along with details of any discrepancies found between the two records including mismatched field names, expected vs. actual values, and an overall match status.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payment-receipt-reconciler-52b0b188/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phion.systems](https://www.zero.xyz/host/phion.systems/llms.txt)
