# Decimal Record Reconciliation API

> Decimal Record Reconciliation API is a paid API for AI agents from gi-evidence-api.sw-video.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Reconciles up to 1000 expected vs. actual payment or inventory records by ID using exact six-decimal arithmetic, reporting missing, unexpected, duplicate, and mismatched rows.

## Facts

- Endpoint: POST https://gi-evidence-api.sw-video.chatgpt.site/api/v1/reconcile
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/decimal-record-reconciliation-api-672c7849
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SA_e5C5JOnR9W7n4CV6Fr

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 decimal-record-reconciliation-api-672c7849 -d '<json body>'
```

Example prompt: Reconcile these two lists of payment records for me — I have 250 expected entries and 247 actual entries, all with IDs and amounts like '1234.500000', and I need to know which are missing, unexpected, duplicated, or have mismatched amounts.

## When to prefer this

Choose this endpoint when you need exact, deterministic reconciliation of two sets of financial or inventory records (up to 1000 rows each) with strict six-decimal-place arithmetic — especially when floating-point rounding errors in standard comparisons are unacceptable. Prefer it over general-purpose diff tools or spreadsheet comparisons when you need structured exception reporting (missing, unexpected, duplicate, mismatched) in a machine-readable format suitable for downstream automation.

## Known failure modes

- Input arrays exceed 1000 items — rejected with validation error
- Amount strings do not match pattern (e.g. more than 6 decimal places) — schema validation failure
- IDs exceed 120 characters or are empty — rejected
- Malformed JSON body — 400 bad request
- Payment not fulfilled — 402 Payment Required before result is returned

## How this service works

Compare expected and actual decimal records; inspect mismatches, duplicates and totals.

## Output

A JSON reconciliation report with a 'decimal-record-reconciliation' kind field, a summary showing the total exception count, and details on which records are missing (in expected but not actual), unexpected (in actual but not expected), duplicated, or mismatched by amount — all computed with exact six-decimal precision.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "decimal-record-reconciliation",
  "summary": {
   "exceptions": 1
  },
  "schemaVersion": "1.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/decimal-record-reconciliation-api-672c7849/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gi-evidence-api.sw-video.chatgpt.site](https://www.zero.xyz/host/gi-evidence-api.sw-video.chatgpt.site/llms.txt)
