# Agent Recommendation Loop Boundary Standard

> Agent Recommendation Loop Boundary Standard 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-15).

Returns a decision procedure for consumer-facing agents governing engagement limits, opt-in friction, and risk-tiered rules before serving the next item in feeds, autoplay, streaks, or personalized recommendations.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-recommendation-loop-boundary-limit-decisio
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-recommendation-loop-boundary-standard-2f6b4c4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6tTVNfdnu_bN9a4Oo_-RB

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 agent-recommendation-loop-boundary-standard-2f6b4c4a
```

Example prompt: Before my agent serves the next video in an autoplay feed that may have teen users, what are the hard engagement limits, required opt-in friction points, and age-aware thresholds I need to enforce?

## When to prefer this

Choose this endpoint when your agent operates a consumer-facing feed, autoplay queue, streak system, or personalized ranking and you need a structured, authoritative decision procedure for engagement loop governance — especially when minor users may be present. Prefer this over generic content-safety endpoints when you specifically need engagement-limit logic (hard stops, opt-in friction, streak rules) rather than content classification.

## Known failure modes

- Missing payment (HTTP 402): agent must complete x402 micropayment before receiving the decision procedure
- Invalid method (only GET/HEAD/DELETE accepted): POST or PUT requests will be rejected
- No content returned for unknown topic overrides if the topic param is unrecognized
- Service unavailable on k2so.wrong.systems causing timeout or 5xx error

## How this service works

Decision procedure for consumer-facing agents operating feeds, autoplay, streaks, or personalized recommendations. Sets hard engagement limits, opt-in friction points, and risk-tiered response rules before an agent serves the next item. Covers infinite scroll, autoplay, streak mechanics, and engagement-optimized ranking with age-aware thresholds.

## Output

A paid response containing decision procedure prose (brief and procedure fields) for the requested engagement mechanic, including hard engagement limits, opt-in friction requirements, risk-tiered response rules, and age-aware thresholds. Also includes service slug, generation source (llm/reasoning/deterministic), and an ISO-8601 timestamp.

## 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 recommendation loop boundary standard 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-recommendation-loop-boundary-limit-decisio",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-recommendation-loop-boundary-limit-decisio",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-recommendation-loop-boundary-standard-2f6b4c4a/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)
