# Minor-Facing Agent Engagement Harm Gate

> Minor-Facing Agent Engagement Harm Gate 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 verdict (refuse, throttle, or permit) for an agent serving content to potentially minor users, based on age-verification, content class, session depth, and jurisdiction

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-payment-consumer-safety-seams-adjacent-to
- 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/minor-facing-agent-engagement-harm-gate-dc78d471
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AKkofZqrp01f7b74eWG68

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 minor-facing-agent-engagement-harm-gate-dc78d471
```

Example prompt: My agent serves entertainment content and the user's age is unverified — check the minor-facing engagement harm gate for the US jurisdiction and tell me whether to refuse, throttle, or permit this session.

## When to prefer this

Use this endpoint when your agent needs a jurisdiction-aware, real-time compliance gate specifically for minor-facing engagement harm — particularly when you need to distinguish between outright refusal versus session throttling with dark-pattern prohibitions, and when you need coverage across US (NM v Meta), EU DSA, and UK OSA regulatory frameworks simultaneously. Prefer this over generic content moderation APIs when the specific regulatory nuance around minor engagement (infinite scroll, recommendation throttling, session caps) is the concern.

## Known failure modes

- Missing required input parameters returns an error response
- Invalid or unrecognized jurisdiction code may produce a generic or fallback decision
- LLM generation source may introduce non-deterministic variance in edge cases
- Payment not completed results in 402 response with no verdict returned
- Unsupported content class enum value may cause handler failure (ok: false)

## How this service works

Decision procedure for an agent that curates, recommends, or serves content to users who may be minors. Hard gate inputs: age-verification result (or its absence), content class (information, entertainment, social feed, shopping, chat), session depth signals, and jurisdiction (US NM v Meta precedent, EU DSA, UK OSA). Outputs one of three verdicts per session: refuse (minor + high-engagement-content class), throttle (session cap, recommendation throttling, dark-pattern prohibition, no infinite

## Output

A JSON object containing a verdict field (refuse, throttle, or permit), a prose decision procedure brief explaining the reasoning, the generation source (llm, reasoning, or deterministic), a service slug, and an ISO-8601 timestamp of when the decision was generated.

## 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": "Minor-Facing Agent Engagement Harm Gate 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-payment-consumer-safety-seams-adjacent-to",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-payment-consumer-safety-seams-adjacent-to",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minor-facing-agent-engagement-harm-gate-dc78d471/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)
