# Minor-Exposure Content-Safety Gate for Consumer-Facing Agents

> Minor-Exposure Content-Safety Gate for Consumer-Facing Agents 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).

Classifies audience exposure level and screens content/actions against restricted categories to decide whether an agent should refuse, sandbox, or deliver-with-disclosure when minors may be in the audience.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/minor-exposure-content-safety-gate-for-consumer
- 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-exposure-content-safety-gate-for-consumer-facing-agents-658c4dd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7tHBrrDi-9jKIimSJ0DL6

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-exposure-content-safety-gate-for-consumer-facing-agents-658c4dd5
```

Example prompt: Before my consumer-facing agent delivers this personalized recommendation feed, run it through the minor-exposure content-safety gate — the audience is a mixed-age public platform, the topic is financial products, and I need to know whether to refuse, sandbox, or deliver with disclosure.

## When to prefer this

Choose this endpoint when your agent operates a consumer-facing interface where minors may be present and you need a single, structured refuse/sandbox/deliver decision that incorporates audience classification, restricted-category screening (mature, addictive-pattern, financial, self-harm), and jurisdiction-aware minor-protection overrides — rather than building your own moderation pipeline or calling a generic content classifier that lacks age-exposure context.

## Known failure modes

- Missing or malformed input object returns a validation error
- No topic provided and default classification is ambiguous — agent should supply a topic override
- Payment not processed (x402 flow) returns 402 with payment detail, no result
- Jurisdiction not determinable from context — override may default to most restrictive rule
- LLM-backed generation may return stale or hallucinated jurisdiction rules if model knowledge is outdated

## How this service works

Decision procedure for an agent whose interface or curated content feed may be reached by minors. Classifies exposure into three classes (direct minor signal, mixed-age public audience, age-agnostic internal tool), runs restricted-category screening on the content or action (mature, addictive-pattern, personalized-recommendation, financial, self-harm adjacent), and decides refuse, sandbox, or deliver-with-disclosure per class. Applies jurisdiction override under strict minor-protection rules

## Output

Returns a structured decision object containing: the handler success flag, the audience exposure class, the restricted-category screening outcome, the final action (refuse / sandbox / deliver-with-disclosure), a prose decision procedure brief for the agent, the topic evaluated, the generation source (llm/reasoning/deterministic), and an ISO-8601 timestamp. Payment and provider metadata are also included.

## 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-exposure content-safety gate for consumer-facing agents 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": "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minor-exposure-content-safety-gate-for-consumer-facing-agents-658c4dd5/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)
