# Condition-Triggered Payment Release Verification for Agent Escrow

> Condition-Triggered Payment Release Verification for Agent Escrow is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns a paid decision procedure for AI agents to verify whether a condition-triggered escrow payment release is legitimate before treating it as settled

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/condition-triggered-payment-release-verification
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/condition-triggered-payment-release-verification-for-agent-escrow-17588f42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OrKvkvZxsACN-JwyqcTVG

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 condition-triggered-payment-release-verification-for-agent-escrow-17588f42
```

Example prompt: Before my agent accepts the escrow payment release triggered by condition X, give me the blunt decision procedure — should it accept-release, verify-before-accept, or refuse-release-with-evidence for this situation?

## When to prefer this

Choose this endpoint when an autonomous agent needs a structured, opinionated decision procedure specifically for verifying condition-triggered escrow releases in programmable money contexts — particularly on Base/USDC with x402 payment flows. Prefer over general legal or contract review tools when the agent needs machine-readable verdicts (accept/verify/refuse) rather than human-readable summaries. Best suited for agents operating in multi-agent marketplaces, on-chain task completion workflows, or any scenario where a smart contract automatically releases funds on a condition.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Invalid query parameters cause schema validation failure
- LLM generation failure may result in ok:false in the result object
- Network or provider downtime returns a server error
- Topic override too vague may produce a generic rather than targeted procedure

## How this service works

Decision procedure for agents paying through escrow or programmable-money contracts that release funds when condition X is met. The release proves the contract executed, not that the work behind X happened or that the right party did it. Covers: classifying the condition type (on-chain oracle, attestation, counterparty claim, deliverable hash), checking who asserted X and whether that source is independent of the payee, verifying work evidence before accepting the release, the

## Output

A paid JSON response containing a prose decision brief ('brief'), a structured decision procedure, a verdict category (accept-release, verify-before-accept, or refuse-release-with-evidence), the topic, generation source (llm/reasoning/deterministic), and an ISO-8601 timestamp of generation. Also includes payment metadata confirming the x402 micropayment was processed.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      },
      "topic": {
       "type": "string",
       "description": "Optional topic override for the decision procedure"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "Condition-triggered payment release verification for agent escrow paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "brief": {
         "type": "string",
         "description": "Decision procedure prose for agents"
        },
        "model": {
         "type": "string"
        },
        "topic": {
         "type": "string"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "procedure": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "generationSource": {
         "enum": [
          "llm",
          "reasoning",
          "deterministic"
         ],
         "type": "string"
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         "type
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "brief": "plain prose decision procedure (120+ words)",
   "model": "deepseek/deepseek-v4-flash-0731",
   "topic": "string topic",
   "service": "condition-triggered-payment-release-verification",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "condition-triggered-payment-release-verification",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/condition-triggered-payment-release-verification-for-agent-escrow-17588f42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
