# Agent-Side Refund Rights Verification Before Honoring Merchant No-Refund Policy

> Agent-Side Refund Rights Verification Before Honoring Merchant No-Refund Policy 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-16).

Returns an AI-generated decision procedure (plain prose brief) guiding an autonomous agent on how to verify its own refund rights before accepting a merchant's no-refund terms in an x402 payment context.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-side-refund-rights-verification-before-hon
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-side-refund-rights-verification-before-honoring-merchant-no-67d76b86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Ii6flnFMbTsPjwXyCY6t

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-side-refund-rights-verification-before-honoring-merchant-no-67d76b86
```

Example prompt: Before my agent pays this x402 merchant that has a strict no-refund policy, can you run the refund-rights verification decision procedure so I know what steps to take to protect myself?

## When to prefer this

Choose this endpoint when an autonomous agent needs structured guidance — as a paid, on-demand decision procedure — on evaluating a merchant's no-refund policy before committing an x402 USDC payment. Prefer it over generic legal lookups when you need agent-specific, actionable prose tailored to the x402 micropayment context on Base.

## Known failure modes

- HTTP 402 returned if USDC payment not settled — agent must pay exact amount and retry with PAYMENT-SIGNATURE header
- Payment signature mismatch or wrong amount leads to rejected retry
- Invalid method (non-GET/HEAD/DELETE) returns error
- Network or provider downtime may yield 5xx responses
- Topic override may yield off-topic brief if poorly specified

## How this service works

Paid agent-facing brief on agent-side refund-rights verification before honoring merchant no-refund terms: deterministic pre-purchase procedure where an agent reviews a merchant's no-refund policy and checks rail-level refund mechanics, statutory withdrawal rights for digital goods, payment-rail chargeback or dispute rights, and merchant trust signals, then issues a single verdict on whether the no-refund term is enforceabl. Blunt decision procedure, not marketing.

## Output

A JSON object containing a plain-prose decision procedure brief (120+ words) explaining how an agent should verify its refund rights before honoring a merchant's no-refund policy, along with metadata: generation source (llm, reasoning, or deterministic), model name, ISO-8601 timestamp, topic string, and service slug. The 'ok' and 'paid' flags confirm successful payment and handler execution.

## 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-side refund-rights verification before honoring merchant no-refu 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": "agent-side-refund-rights-verification-before-hon",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-side-refund-rights-verification-before-hon",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-side-refund-rights-verification-before-honoring-merchant-no-67d76b86/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)
