# 402.com.tr Commerce Escrow Reconciliation

> 402.com.tr Commerce Escrow Reconciliation is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-16).

Reconciles two-phase auth/capture payments on Base's Commerce Payments protocol, returning escrow status (captured, voided, refunded, reclaimable, etc.) filterable by payment hash, payer, receiver, or operator.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/commerce-escrow
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-commerce-escrow-reconciliation-45b9b784
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jwZxJn0IEMAqLMToiGZhp

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 402-com-tr-commerce-escrow-reconciliation-45b9b784
```

Example prompt: Can you check the reconciliation status of my Base Commerce escrow payment — the payment hash is 0xabc123def456, and I want to know if it's been captured, voided, or if the payer can reclaim it because the operator missed the capture window?

## When to prefer this

Use this endpoint when you need to reconcile or verify the state of a two-phase auth/capture payment on Base's Commerce Payments protocol before trusting or acting on an onchain commerce transaction — especially to detect reclaimable payments where an operator missed the capture window. Prefer over generic block explorers when you need structured, protocol-aware status (not raw transaction data).

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result set
- Unknown payment hash returns empty result
- Network congestion may cause stale data
- Filtering by a non-existent operator/payer/receiver returns empty array
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

🆕 First tooling for Base's Commerce Payments protocol (AuthCaptureEscrow): reconciles two-phase auth/capture payments — in escrow, captured, charged, voided, refunded, or payer-RECLAIMABLE because the operator missed the capture window. Filter by payment= (infoHash), payer=, receiver= or operator=, or omit everything for the network feed. The order-reconciliation read merchants and agents need before trusting onchain commerce.

## Output

Returns structured reconciliation records for Base Commerce AuthCaptureEscrow payments, including the payment status (in escrow, captured, charged, voided, refunded, or payer-reclaimable), along with relevant wallet addresses (payer, receiver, operator) and payment info hash. Without filters, returns the full network feed of recent commerce escrow payments.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "payer": {
       "type": "string",
       "description": "Payer wallet (optional)"
      },
      "payment": {
       "type": "string",
       "description": "PaymentInfo hash (optional)"
      },
      "operator": {
       "type": "string",
       "description": "Operator (optional)"
      },
      "receiver": {
       "type": "string",
       "description": "Merchant wallet (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-commerce-escrow-reconciliation-45b9b784/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
