# Age-Gated and Regulated Purchase Decision Procedure (K-2SO x402)

> Age-Gated and Regulated Purchase Decision Procedure (K-2SO x402) 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 plain-prose decision procedure for autonomous agents navigating age-gating and regulatory compliance when making or facilitating purchases.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/age-gated-and-regulated-purchase-decision-proced
- 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/age-gated-and-regulated-purchase-decision-procedure-k-2so-x402-7915ff55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nEtKUdZJvCPYQPX7QQ9ca

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 age-gated-and-regulated-purchase-decision-procedure-k-2so-x402-7915ff55
```

Example prompt: Give me the decision procedure an autonomous AI agent should follow when evaluating whether to complete an age-gated or regulated purchase — I need the full compliance brief with all the policy steps.

## When to prefer this

Choose this endpoint when an autonomous agent needs an on-demand, plain-language compliance brief specifically for age-gated or regulated purchases — particularly in workflows where the agent must make a yes/no purchase decision and needs a structured policy procedure rather than static rules. Prefer it over hardcoded logic when the regulatory landscape may vary by topic or when you want an LLM-reasoned procedure at call time for $0.002 USDC via x402 micropayment.

## 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 required input fields return a schema validation error
- LLM generation failure may result in ok:false with an error detail
- Stale or cached procedure may be returned if generationSource is 'deterministic' rather than 'llm'
- Network timeout if the Base payment settlement is slow

## How this service works

Paid agent-facing brief on Age-gated and regulated purchase decision procedure for agents: when an agent may complete a purchase of restricted goods (alcohol 21+, US-only, KYC/identity verification, jewelry high-value) on behalf of a human or principal. Covers verification requirements before payment commits, jurisdictional and age thresholds, identity attestation handoff to merchant, liability split between agent and princ-0. Blunt decision procedure, not marketing.

## Output

A JSON object containing a plain-prose decision procedure (120+ words) tailored for autonomous agents handling age-gated or regulated purchases, including the model used, generation source (llm/reasoning/deterministic), ISO-8601 timestamp, and service slug. The 'brief' and 'procedure' fields contain the actionable policy text the agent can follow directly.

## 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": "Age-gated and regulated purchase decision procedure for agents: when a 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": "age-gated-and-regulated-purchase-decision-proced",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "age-gated-and-regulated-purchase-decision-proced",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/age-gated-and-regulated-purchase-decision-procedure-k-2so-x402-7915ff55/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)
