# On-Chain Agent Reputation Farming Audit Procedure

> On-Chain Agent Reputation Farming Audit Procedure 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).

Audits a counterparty's on-chain transaction history, star ratings, or success records to determine whether they are genuine or artificially farmed, returning a verdict tier with confidence thresholds and evidence pointers.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/onchain-agent-reputation-farming-audit-procedure
- 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/on-chain-agent-reputation-farming-audit-procedure-fbdb5f10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qp_XHM6HOP8eE37wHN4nX

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 on-chain-agent-reputation-farming-audit-procedure-fbdb5f10
```

Example prompt: Before I pay this agent, can you audit their on-chain reputation and tell me if their transaction history and star ratings look genuine or if there are signs of wash trading, sybil rings, or other farming — give me the verdict tier and confidence level?

## When to prefer this

Choose this endpoint when you need to verify whether a specific counterparty's on-chain reputation signals (transaction count, star ratings, success records) are authentic before committing to a payment or partnership. It is particularly valuable in autonomous agent-to-agent commerce scenarios where no off-chain identity verification is possible and you must rely solely on ledger patterns to assess trustworthiness. Prefer it over generic blockchain explorers when you need a structured verdict tier with confidence scores rather than raw data.

## Known failure modes

- Address or topic not found on-chain — returns ok:false with no ledger data available
- Insufficient transaction history to reach a verdict — low-confidence result with inconclusive tier
- Malformed or missing required query parameters — 400-level error
- Payment not received — 402 Payment Required response blocking the paid result
- Service temporarily unavailable — 5xx error with no verdict returned

## How this service works

A decision procedure for verifying whether a counterparty's on-chain transaction history, star rating, or success record is genuine or farmed. The audit inspects the historical ledger pattern itself for synthetic volume, including wash-trade self-payments, sybil rating rings, paid-review loops, and transaction-count inflation. It returns a verdict tier from verified-genuine to confirmed-farmed, with confidence thresholds and evidence pointers.

## Output

Returns a structured result containing a verdict tier (ranging from verified-genuine to confirmed-farmed), a confidence threshold, a prose decision brief for agents, evidence pointers identifying specific suspicious patterns found, the generation source (llm, reasoning, or deterministic), and an ISO-8601 timestamp of when the audit was generated.

## 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": "On-chain agent reputation farming audit 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": "onchain-agent-reputation-farming-audit-procedure",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "onchain-agent-reputation-farming-audit-procedure",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/on-chain-agent-reputation-farming-audit-procedure-fbdb5f10/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)
