# Stratalize Verify Receipt Batch

> Stratalize Verify Receipt Batch is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Batch-verify governed settlement receipts with three-layer trust verdicts (post-quantum signature, digest binding, on-chain anchor)

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/verify-receipt-batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-verify-receipt-batch-d7cf46aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jVRfa4PJoFJG8EPTsnmrR

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 stratalize-verify-receipt-batch-d7cf46aa
```

Example prompt: Can you verify these settlement receipts from our compliance batch — I have a list of receipt IDs like '3fa85f64-5717-4562-b3fc-2c963f66afa6' and a few raw receipt JSON objects — and give me the three-layer trust verdict for each one showing the post-quantum signature, digest binding, and on-chain anchor status?

## When to prefer this

Use this endpoint when an auditor, compliance agent, or risk officer needs programmatic, zero-persistence batch verification of governed settlement receipts across finance, legal, or healthcare domains — especially when three-layer cryptographic trust (post-quantum signature + digest binding + on-chain anchor) is required for regulatory or audit purposes.

## Known failure modes

- Invalid or malformed receipt UUIDs return per-item error in verdict
- Receipt JSON that does not match expected schema may fail digest binding check
- Unknown receipt IDs may return unverifiable status
- Batch size limits may result in request rejection if too many items submitted
- Payment failure (insufficient USDC) causes 402 error before processing

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when an auditor or compliance agent needs programmatic batch verification of governed settlement receipts. Accepts receipt IDs or pasted receipt JSON; returns per-item three-layer trust verdicts (post-quantum signature, digest binding, on-chain anchor) with zero persistence. Read and verify only — no re-issuance

## Output

Per-item three-layer trust verdicts for each submitted receipt, covering post-quantum signature validity, digest binding status, and on-chain anchor confirmation — with zero data persistence on the provider side.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "receipts": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Request parameter: receipts"
  },
  "receipt_ids": {
   "type": "array",
   "items": {
    "type": "string",
    "format": "uuid"
   },
   "description": "Request parameter: receipt ids"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-verify-receipt-batch-d7cf46aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
