# Parent-Controlled Agent Sub-Wallet Provisioning Decision Procedure

> Parent-Controlled Agent Sub-Wallet Provisioning Decision Procedure 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 deterministic decision procedure (PROVISION, CAP_ADJUST, ROTATE_KEY, or REVOKE) for a principal provisioning and managing restricted USDC sub-wallets for child agents.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/parent-controlled-agent-sub-wallet-provisioning
- 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/parent-controlled-agent-sub-wallet-provisioning-decision-procedure-87be643b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MiCtqR-cR9UL5gNmEJ_5I

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 parent-controlled-agent-sub-wallet-provisioning-decision-procedure-87be643b
```

Example prompt: I need to provision a restricted sub-wallet for my new data-fetching child agent — set a USDC cap of 10, allowlist only my known payees, use self-custody mode, and fund from my primary wallet. What is the correct decision procedure?

## When to prefer this

Choose this endpoint when a parent agent or human owner needs a deterministic, policy-grounded decision procedure for managing child agent sub-wallets — especially for provisioning with USDC caps, enforcing payee allowlists, handling key rotation, or executing instant revocation. Prefer this over generic wallet APIs when the use case involves multi-agent hierarchies, x402 payment rails, and agentic access control rather than simple wallet CRUD operations.

## Known failure modes

- Payment not provided — returns 402 with payment requirements
- Invalid or missing query parameters — malformed request rejected
- Child agent identity not resolvable — procedure cannot be generated
- LLM/reasoning backend unavailable — generation source fallback or error
- Topic override not recognized — default procedure returned instead

## How this service works

Deterministic decision procedure for a principal (parent agent or human owner) provisioning restricted sub-wallets for child agents. Covers per-wallet USDC caps, payee allowlists, key custody and rotation, funding rules, and instant revocation when a child agent misbehaves, exceeds cap, or is retired. Inputs: child agent identity, requested cap, allowlist, custody mode, funding source. Output: PROVISION, CAP_ADJUST, ROTATE_KEY, or REVOKE with concrete thresholds, failure modes, and kill

## Output

A structured decision procedure brief with one of four recommended actions (PROVISION, CAP_ADJUST, ROTATE_KEY, or REVOKE), including concrete thresholds, failure modes, kill conditions, the model and generation source used, and an ISO-8601 timestamp — delivered as prose optimized for agent consumption.

## 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": "Parent-controlled agent sub-wallet provisioning 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/parent-controlled-agent-sub-wallet-provisioning-decision-procedure-87be643b/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)
