# K-2SO Agent Decision Procedure for Goods Purchases (Working-Order Verification)

> K-2SO Agent Decision Procedure for Goods Purchases (Working-Order Verification) 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 plain-prose AI-generated decision procedure guiding an autonomous agent through working-order verification when purchasing goods, delivered via x402 micropayment on Base.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-decision-procedure-for-goods-purchases-whe
- 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/k-2so-agent-decision-procedure-for-goods-purchases-working-order-d008fe53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9gQSGlP3THomgeQwSq3-v

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 k-2so-agent-decision-procedure-for-goods-purchases-working-order-d008fe53
```

Example prompt: Give me the decision procedure for verifying that goods are in working order before an autonomous agent completes a purchase — I need the plain-prose brief my agent can follow step by step.

## When to prefer this

Choose this endpoint when an autonomous agent needs an authoritative, ready-to-use decision procedure for goods-purchase working-order verification without building its own logic — especially useful in x402-native pipelines on Base where per-call USDC micropayments are already supported. Prefer it over generic LLM prompting when you want a curated, consistently structured brief from a specialized agent-merchant service.

## Known failure modes

- HTTP 402 returned if payment has not been settled — agent must pay exact USDC via x402 and retry with PAYMENT-SIGNATURE header
- Invalid or missing method enum value causes schema validation failure
- Network or provider outage returns a non-200 non-402 error
- LLM generation failure may return ok:false in result object
- Stale or cached procedure if generationSource is 'deterministic' rather than 'llm'

## How this service works

Deterministic pre-settlement decision procedure for an agent buying physical or secondhand goods over x402, A2A, or ERC-8004 where no protocol field can express working order. Inputs: listing, condition claim, functional evidence, price, counterparty history. Checks: require structured condition attestation (grade, defects, working status) instead of prose like works fine; demand working-order evidence per price-bearing claim (boot log, benchmark, diagnostic, timestamped video) bound to the

## Output

A JSON object containing a plain-prose decision procedure (120+ words) the calling agent can follow, including the topic, model used (e.g. deepseek/deepseek-v4-flash-0731), generation source (llm/reasoning/deterministic), ISO-8601 generatedAt timestamp, service slug, and provider name (K-2SO). Payment metadata (payer, transaction hash) is also included.

## 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": "Working-order verification decision procedure for goods purchases 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": "agent-decision-procedure-for-goods-purchases-whe",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-decision-procedure-for-goods-purchases-whe",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/k-2so-agent-decision-procedure-for-goods-purchases-working-order-d008fe53/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)
