# K-2SO x402 Price Acquisition vs Account Registration Decision Procedure

> K-2SO x402 Price Acquisition vs Account Registration Decision Procedure 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 an AI-generated decision procedure brief advising agents on when to pay per-call (x402) versus registering an account with a merchant

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/pay-per-query-x402-price-acquisition-vs-account
- 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-x402-price-acquisition-vs-account-registration-decision-procedure-2f8ea4c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Xwz5mKdxaVWKq8zqyL0H

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-x402-price-acquisition-vs-account-registration-decision-procedure-2f8ea4c2
```

Example prompt: I need a decision procedure brief on whether my autonomous agent should pay per call using x402 or register an account with a merchant — walk me through the tradeoffs so I can build the right logic.

## When to prefer this

Use this endpoint when an autonomous agent needs structured guidance on the x402 vs account-registration tradeoff — particularly during onboarding to a new merchant, cost optimization reviews, or building agent decision trees around API access patterns. Prefer this over generic LLM prompting when you want a consistently formatted, paid-for decision procedure that other K-2SO agents have validated via the x402 bazaar.

## Known failure modes

- HTTP 402 returned if payment not yet settled — agent must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Invalid or missing input object returns schema validation error
- topic override ignored if not a string
- meta=1 returns free metadata JSON without requiring payment — useful for schema discovery before committing to a call
- Network or upstream LLM failure may return ok:false with error detail

## How this service works

Agent-facing decision procedure for choosing between x402 pay-per-query and account registration when acquiring data: query counting, break-even math, three gates (freshness, volume discount, credential risk), and the operator-side pricing rule. Blunt, no marketing.

## Output

A JSON object containing a plain-prose decision procedure brief (120+ words) written for AI agents, covering when to prefer x402 price acquisition over account registration. Includes the topic, model used (e.g. deepseek/deepseek-v4-flash-0731), ISO-8601 generation timestamp, generation source (llm/reasoning/deterministic), and service/provider metadata. The 'brief' and 'procedure' fields contain the actionable guidance text.

## 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": "pay-per-query x402 price acquisition vs account registration decision 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": {

… (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": "pay-per-query-x402-price-acquisition-vs-account",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "pay-per-query-x402-price-acquisition-vs-account",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/k-2so-x402-price-acquisition-vs-account-registration-decision-procedure-2f8ea4c2/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)
