# Payee Identity Registry Vetting Decision Procedure (x402/ERC-8004)

> Payee Identity Registry Vetting Decision Procedure (x402/ERC-8004) 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-14).

Returns a blunt, structured decision procedure for vetting whether a payTo address's registry entry is genuine and trustworthy enough to pay before executing an x402 settlement

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/payee-identity-registry-vetting-before-x402-sett
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payee-identity-registry-vetting-decision-procedure-x402-erc-8004-b2865ca1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1GORUl4wMveEoPWzcyoFM

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 payee-identity-registry-vetting-decision-procedure-x402-erc-8004-b2865ca1
```

Example prompt: Give me a blunt decision procedure for vetting a payTo address registry entry before I settle an x402 payment — I need to know if the ERC-8004 identity behind it is genuine enough to trust, not just declared.

## When to prefer this

Choose this endpoint when an autonomous agent needs a concrete, non-marketing decision procedure for assessing payee registry trustworthiness before committing to an x402 settlement — especially when ERC-8004 identity is declared but not independently verifiable. Prefer this over generic identity-check or KYC services when operating in the x402/Base/USDC on-chain payment stack and needing agent-consumable structured vetting logic rather than human-readable compliance documents.

## Known failure modes

- Payment not submitted or insufficient: returns 402 with payment requirements
- Invalid query parameters: returns error on malformed input
- LLM/reasoning backend unavailable: generationSource may fall back or return error
- Topic override not recognized: procedure may default to canonical topic
- Rate limiting or service unavailability: HTTP 5xx response

## How this service works

Paid agent-facing brief on Payee identity registry vetting before x402 settlement: decide whether the registry entry behind a payTo address is real and trustworthy enough to pay, given that x402 proves settlement and ERC-8004 declares identity but neither proves the registry entry is genuine. · Build a decision procedure or schema for: Payee identity registry vetting before x402 settlement: decide whether the registry entry. Blunt decision procedure, not marketing.

## Output

A paid response containing a structured decision procedure or schema (prose and/or structured fields) for evaluating whether a payee's x402 identity registry entry is genuine and trustworthy, including fields: brief (decision procedure prose), procedure, topic, generatedAt timestamp, model used, and generationSource (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": "Payee identity registry vetting before x402 settlement: decide whether 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": "payee-identity-registry-vetting-before-x402-sett",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "payee-identity-registry-vetting-before-x402-sett",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payee-identity-registry-vetting-decision-procedure-x402-erc-8004-b2865ca1/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)
