# Minor-Facing Agent Engagement Harm Gate

> Minor-Facing Agent Engagement Harm Gate is a paid API for AI agents from k2so-8080.on.ascii.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns a verdict (refuse/throttle/allow) for agents serving content to potentially minor users, based on age-verification, content class, session depth, and jurisdiction.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/agent-payment-consumer-safety-seams-adjacent-to
- 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/minor-facing-agent-engagement-harm-gate-53ac4a4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kUsm-fd4R8GMFvzQnqMv0

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-53ac4a4c
```

Example prompt: My agent is about to recommend a social feed to a user who failed age verification in a US jurisdiction — can you run the minor-facing engagement harm gate and tell me whether to refuse, throttle, or allow the session?

## When to prefer this

Choose this endpoint when your agent needs a pre-built, jurisdiction-aware compliance decision for minor-facing content delivery — especially when you need to handle US NM v Meta, EU DSA, and UK OSA simultaneously without implementing the rule logic yourself. It is particularly valuable when content class spans information, entertainment, social feed, shopping, or chat, and you need a single verdicting surface rather than a homegrown policy engine.

## Known failure modes

- Missing required age-verification or content-class inputs may result in a default-refuse verdict or an error
- Unknown jurisdiction codes return an error or fall back to most-restrictive defaults
- Session depth signals that are ambiguous may trigger conservative throttle rather than a precise ruling
- Network or payment failure returns a 402 or 5xx with no verdict
- Rate limits may apply per wallet/session at the provider level

## 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 verdict of 'refuse', 'throttle', or 'allow' for the current session, accompanied by prose explaining the decision procedure, applicable jurisdiction rules (US NM v Meta, EU DSA, UK OSA), session cap values if throttling applies, recommendation-throttling instructions, and dark-pattern prohibition flags. Also includes a service slug, ISO-8601 timestamp, and generation source (llm/reasoning/deterministic).

## 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)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minor-facing-agent-engagement-harm-gate-53ac4a4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so-8080.on.ascii.dev](https://www.zero.xyz/host/k2so-8080.on.ascii.dev/llms.txt)
