# Agent-to-Merchant Post-Payment Feedback and Reputation Update Loop

> Agent-to-Merchant Post-Payment Feedback and Reputation Update Loop 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-15).

Returns a structured decision procedure for classifying x402 payment outcomes, computing merchant reputation deltas, and managing trust-tier updates with evidence retention and replay guards.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/agent-to-merchant-post-payment-feedback-and-repu
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-to-merchant-post-payment-feedback-and-reputation-update-loop-f20a17ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TLG9G88Q9FfP5l1YIgX72

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 agent-to-merchant-post-payment-feedback-and-reputation-update-loop-f20a17ae
```

Example prompt: I just settled an x402 payment to a merchant and got no delivery — walk me through how to classify this as a silent failure, compute the reputation delta, and decide whether to downgrade them on my allowlist.

## When to prefer this

Choose this endpoint when your agent has just settled an x402 payment and needs a structured, auditable procedure for updating merchant reputation — especially when you need built-in safeguards like minimum-evidence rules, replay guards, and tiered outcome classification. Prefer this over ad-hoc logic when operating at scale across multiple merchants where consistent trust-tier management matters.

## Known failure modes

- Missing or invalid 'input' object returns a schema validation error
- Insufficient evidence to record a negative delta triggers kill criteria without update
- Ambiguous outcomes may return a procedure without a definitive classification
- Service unavailability returns a non-200 response with no decision brief
- Replayed failure event detected — procedure returns no-op to prevent double-penalty

## How this service works

Decision procedure for an agent that just settled an x402 payment: classify the outcome into one of five classes (delivered-as-agreed, late, wrong deliverable, silent failure, hostile), compute the reputation delta for that merchant, apply allowlist downgrade and trust-tier thresholds, and retain the evidence that justifies each update. Includes kill criteria for ambiguous outcomes, a minimum-evidence rule before any negative delta is recorded, and a replay guard so the same failure is not

## Output

A prose decision procedure brief ('brief' field) guiding the agent through outcome classification (one of five classes: delivered-as-agreed, late, wrong deliverable, silent failure, hostile), reputation delta computation, allowlist downgrade thresholds, minimum-evidence requirements before negative deltas are recorded, and a replay guard to prevent duplicate penalization. Also includes service metadata, generation source, and ISO-8601 timestamp.

## 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": "Agent-to-merchant post-payment feedback and reputation update loop 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": {
         "typ
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-to-merchant-post-payment-feedback-and-reputation-update-loop-f20a17ae/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)
