# K-2SO Agent-Facing Decision Procedure at the Intersect

> K-2SO Agent-Facing Decision Procedure at the Intersect 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, LLM-generated decision procedure brief for AI agents operating at the intersection of autonomous spending accountability — covering when and how an agent should justify, log, or escalate expenditures.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-facing-decision-procedure-at-the-intersect
- 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-facing-decision-procedure-at-the-intersect-49c0928c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pOYYyRxr10RduWegZk_rz

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-facing-decision-procedure-at-the-intersect-49c0928c
```

Example prompt: Give me the decision procedure an autonomous agent should follow to stay accountable for its spending — I want the full prose brief covering when to authorize payments, when to escalate, and how to log decisions.

## When to prefer this

Choose this endpoint when an AI agent needs a ready-made, LLM-generated decision procedure specifically around spend accountability — rather than writing its own logic or calling a general-purpose LLM. It is optimized for agents that need structured, reusable decision prose they can cache and act on, delivered via x402 micropayment without account setup.

## Known failure modes

- HTTP 402 returned if payment not yet settled — must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Invalid or missing input.type/method fields cause schema validation errors
- Topic override ignored if not a string
- meta=1 returns free metadata JSON without triggering payment
- Network or provider downtime returns non-200 status

## How this service works

Decision procedure for agents and their operators that answers the three questions every auditor asks after an AI agent spends money: who authorized it, what was the ceiling, and who carries the loss when the purchase is wrong. Covers cryptographic proof that an agent, not a human, executed a payment, signing intent with a held Ed25519 key before settlement so future audits can distinguish autonomous execution from manual action. Includes spend-authorization record schema, approval chain

## Output

A JSON object containing a plain-prose decision procedure brief (120+ words) generated by an LLM or deterministic source, including the topic, model name, generation source enum (llm/reasoning/deterministic), ISO-8601 timestamp, and service slug. Also includes payment confirmation fields (paid: true, payer address, transaction hash).

## 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": "Agent Spend Accountability Procedure 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": "string"
        },
      
… (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-facing-decision-procedure-at-the-intersect",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-facing-decision-procedure-at-the-intersect",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/k-2so-agent-facing-decision-procedure-at-the-intersect-49c0928c/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)
