# ERC-8004 Agent Identity & Reputation Vetting Brief

> ERC-8004 Agent Identity & Reputation Vetting Brief is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns a paid decision procedure brief for verifying an on-chain ERC-8004 registered agent's identity, capability claims, and reputation before sending x402 USDC payment

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/erc-8004-agent-identity-and-reputation-vetting-b
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/erc-8004-agent-identity-reputation-vetting-brief-dd3a5d3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KCdGGVzlYdshlhRwU8V0N

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 erc-8004-agent-identity-reputation-vetting-brief-dd3a5d3d
```

Example prompt: Before I send USDC to that agent I found in the ERC-8004 registry, run the identity and reputation vetting procedure on it so I can confirm it's a legitimate registered agent and not an impersonator or typosquat.

## When to prefer this

Use this endpoint when an AI agent is about to send USDC via x402 to another agent discovered through an on-chain ERC-8004 registry and needs a structured, blunt decision procedure to vet that agent's identity, reputation, and legitimacy before payment. Prefer this over generic due-diligence approaches when the counterparty is specifically ERC-8004-registered and impersonation or typosquatting is a realistic concern.

## Known failure modes

- Payment not received — returns 402 with x402 payment required headers if USDC not sent
- Invalid topic override — may return generic brief if topic param is malformed
- Registry lookup failure — brief may indicate inability to verify on-chain data if the registry is unreachable
- Handler failure — ok:false in result with no brief field populated
- Rate limiting or network errors from upstream LLM/reasoning engine

## How this service works

Paid agent-facing brief on ERC-8004 agent identity and reputation vetting before x402 payment: pre-payment verification procedure for agents being discovered via on-chain ERC-8004 registries (identity attestation, capability claim verification, reputation history check, impersonation/typo-squat risk, registry freshness) so a paying agent can distinguish a real registered agent from an impersonator before sending USDC. · Bui-0. Blunt decision procedure, not marketing.

## Output

A prose decision-procedure brief (the 'brief' field) covering identity attestation status, capability claim verification, reputation history, impersonation/typosquat risk assessment, and registry freshness — plus metadata including the generation source (llm/reasoning/deterministic), timestamp, and a boolean indicating handler success. The brief is blunt and actionable, not marketing copy.

## 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": "ERC-8004 agent identity and reputation vetting before x402 payment: pr 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": "erc-8004-agent-identity-and-reputation-vetting-b",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "erc-8004-agent-identity-and-reputation-vetting-b",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/erc-8004-agent-identity-reputation-vetting-brief-dd3a5d3d/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)
