# 10x402.com Dispute Pack Receipt

> 10x402.com Dispute Pack Receipt is a paid API for AI agents from 10x402.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Generates a cryptographically attested dispute pack for a host, including a contradiction statement, full measurement series, and SHA-256 digest for independent verification.

## Facts

- Endpoint: POST https://10x402.com/monitor/receipt
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/10x402-com-dispute-pack-receipt-33ebdba6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uc4wwzwkp6tbcWQ6C9gOd

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 10x402-com-dispute-pack-receipt-33ebdba6 -d '<json body>'
```

Example prompt: Generate a dispute pack for socialx402.com — I need the contradiction statement, the full measurement series, and the SHA-256 digest with canonicalization rule so I can independently verify the attestation.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, attested record of contradictions in x402 monitor data for a specific host — particularly when preparing a dispute case, auditing measurement integrity, or requiring an independently recomputable SHA-256 digest. Prefer this over /monitor/verdict (which gives the current verdict) or the daily history endpoint (which lacks attestation and digest).

## Known failure modes

- Invalid or missing host field in body returns an error
- Body exceeds 256 KB limit returns rejection
- Host is a bare 0x wallet address — pack carries no probe evidence, only readings
- Malformed JSON body causes parse error
- Host not found in monitor database returns empty or null series

## How this service works

The dispute pack: the series, the contradiction stated, a SHA-256 digest and an attestation

## Output

Returns a JSON dispute pack containing: issued_at timestamp, a human-readable contradiction statement, the complete measurement series for the host, a cryptographic attestation, and a SHA-256 digest together with the canonicalization rule needed to independently recompute it. NULL values indicate missing rows or data never requested; 0 values indicate a real zero or a request with no HTTP response.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "string",
     "maxLength": 262144,
     "description": "a JSON object: { \"host\": \"socialx402.com\" } — the same subject form as /monitor/verdict. A bare 0x… wallet subject holds readings but can never hold probes, so its pack carries no probe evidence, up to 256 KB"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "text"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "format"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "text"
    },
    "format": {
     "type": "string",
     "const": "application/json",
     "description": "a JSON dispute pack: issued_at, the contradiction statement, the full series, the attestation, and a SHA-256 digest with the canonicalisation rule to recompute it. NULL and 0 are different claims throughout: NULL means no row or never asked; 0 means a real zero, or asked with no HTTP answer"
    },
    "example": {
     "type": "string",
     "description": "the sample request body above, actually run through this endpoint — or, when that run is larger than a response header should carry, an object naming its size and the free URL it is published at in full"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/10x402-com-dispute-pack-receipt-33ebdba6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 10x402.com](https://www.zero.xyz/host/10x402.com/llms.txt)
