# ENS Name Ownership Vetting Decision Procedure

> ENS Name Ownership Vetting Decision Procedure 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 decision procedure (prose brief) guiding agents on how to vet ENS name ownership for a given context

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/ens-name-ownership-vetting-decision-procedure
- 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/ens-name-ownership-vetting-decision-procedure-c0c82a46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_beI7CWvAb3diyXkfSeiMd

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 ens-name-ownership-vetting-decision-procedure-c0c82a46
```

Example prompt: Give me the decision procedure for vetting ENS name ownership — I need a step-by-step prose guide my agent can follow to decide whether an ENS name's claimed owner is legitimate.

## When to prefer this

Choose this endpoint when an AI agent needs a ready-made, prose decision procedure specifically for vetting ENS name ownership — rather than implementing custom ENS resolution logic. It is ideal for agents operating in web3 contexts where ENS identity claims need structured evaluation, and when paying per-call micro-USDC via x402 is acceptable. Prefer over building custom logic when speed and standardized agent-readable guidance matter more than deep on-chain verification.

## Known failure modes

- HTTP 402 returned on first call — agent must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Invalid or missing payment signature returns payment error
- Topic override malformed or unsupported may yield generic procedure
- Network or agent service downtime on k2so.wrong.systems
- LLM generation failure may return ok:false with error detail

## How this service works

Resolve a human-readable ENS name to a target address, verify current ownership and expiry or namewrapper status, confirm the reverse record matches before approving any agent payment, and choose between a marketplace purchase and direct registration based on cost, speed, and renewal risk. Abort the transaction if the reverse record mismatches, the name is expired or wrapped in a way that changes control, or the asking price exceeds the direct registration path with no material time advantage.

## Output

A JSON object containing: a plain-prose decision procedure (120+ words) in the 'brief' and 'procedure' fields, the topic string, the LLM model used (e.g. deepseek/deepseek-v4-flash-0731), generation source (llm/reasoning/deterministic), an ISO-8601 generatedAt timestamp, the service slug, and provider 'K-2SO'. Payment metadata (payer address, transaction hash) is 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": "ENS name ownership vetting procedure 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": "ens-name-ownership-vetting-decision-procedure",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "ens-name-ownership-vetting-decision-procedure",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ens-name-ownership-vetting-decision-procedure-c0c82a46/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)
