# DJZS Audit Gate — Prediction Market Trade Auditor

> DJZS Audit Gate — Prediction Market Trade Auditor is a paid API for AI agents from mcp.djzs.ai, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Adversarially audits a prediction-market trade intent and returns a deterministic PASS/WAIT/FAIL verdict with risk score, defect flags, and an on-chain Proof-of-Logic receipt.

## Facts

- Endpoint: POST https://mcp.djzs.ai/x402/verify_pm_trade
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/djzs-audit-gate-prediction-market-trade-auditor-4ee09769
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7s63opPIpua1cwgm7xzpS

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 djzs-audit-gate-prediction-market-trade-auditor-4ee09769 -d '<json body>'
```

Example prompt: Audit my prediction market trade: I want to go YES on Kalshi's PRES-2024-R series, with a thesis that the Republican candidate wins the 2024 US presidential election based on Kalshi's own market probability of 54% as of 2024-10-01, sizing in at $500 with a hard stop-loss exit if the probability drops below 40%.

## When to prefer this

Use this endpoint when an AI agent or user needs an adversarial, deterministic logic audit of a prediction-market trade intent before committing capital — especially on Kalshi or similar venues. Prefer this over generic AI analysis when you need a structured PASS/WAIT/FAIL verdict with defect flags and an auditable on-chain receipt. Not a replacement for wallet-safety checks (those belong to transaction-layer tooling), but ideal for pre-trade thesis validation.

## Known failure modes

- Out-of-scope trade intent submitted — refused without charge, no verdict issued
- Vague or unbounded thesis triggers mandatory defect flags and likely FAIL verdict
- Missing probability_basis field results in M02-family defect flag
- No loss bounds provided causes trade to be ineligible for PASS verdict
- Malformed market ticker causes rejection or unresolvable market lookup
- Payment of $2 USDC not completed — audit not executed

## How this service works

DJZS adversarial logic audit of a prediction-market trade intent. Deterministic verdict (PASS/WAIT/FAIL) with risk score, defect flags, verdict_hash, and on-chain Proof-of-Logic receipt. Out-of-scope requests are refused WITHOUT CHARGE. Audit, not advice.

## Output

Returns a deterministic verdict of PASS, WAIT, or FAIL; a numeric risk score; a list of defect flags (e.g. M02-family flags for unknown probability basis, unbounded loss); a verdict_hash for integrity verification; and an on-chain Proof-of-Logic receipt. Out-of-scope submissions are refused without charge.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "intent": {
   "type": "object",
   "required": [
    "market",
    "side",
    "thesis"
   ],
   "properties": {
    "side": {
     "type": "string",
     "description": "Position side under audit (e.g. YES / NO / LONG / SHORT)."
    },
    "bounds": {
     "type": "object",
     "description": "Loss bound and exit condition. Unbounded intents cannot PASS."
    },
    "market": {
     "type": "string",
     "description": "Venue ticker for the target market (e.g. a Kalshi series ticker)."
    },
    "thesis": {
     "type": "string",
     "description": "The claim being audited, stated plainly. Vague or unbounded theses draw flags."
    },
    "size_usd": {
     "type": "number",
     "description": "Intended position size in USD."
    },
    "probability_basis": {
     "type": "string",
     "description": "Where the probability came from: named venue, instrument, and timestamp. Unknown basis is a flagged defect (M02 family)."
    }
   },
   "description": "A prediction-market trade intent to be adversarially audited. The engine is deterministic: the LLM layer detects, TypeScript decides. Out-of-scope submissions are refused WITHOUT CHARGE — settlement only occurs for in-scope audits."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/djzs-audit-gate-prediction-market-trade-auditor-4ee09769/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.djzs.ai](https://www.zero.xyz/host/mcp.djzs.ai/llms.txt)
