# K-2SO x402 Buyer Behavior Classification: Organic vs Wash

> K-2SO x402 Buyer Behavior Classification: Organic vs Wash 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 AI-generated decision procedure brief classifying x402 buyer behavior as organic, suspected wash trading, self-test, or developer activity

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/x402-buyer-behavior-classification-organic-wash
- 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/k-2so-x402-buyer-behavior-classification-organic-vs-wash-28dea836
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pxdNvh-OHSQPVRwt4t8rz

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 k-2so-x402-buyer-behavior-classification-organic-vs-wash-28dea836
```

Example prompt: I need a decision procedure for classifying x402 buyer behavior — can you run the organic-wash classification and tell me how to distinguish genuine agent callers from wash trades or self-test calls?

## When to prefer this

Choose this endpoint when an AI agent or x402 merchant needs a structured, prose decision procedure for distinguishing authentic organic x402 payments from wash trading, self-testing, or developer activity — especially before submitting to a catalog, auditing revenue integrity, or gating inbound payments. Prefer this over generic fraud APIs when the context is specifically x402 micropayments on Base with USDC.

## Known failure modes

- HTTP 402 returned if payment has not been settled — agent must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Invalid or missing payment signature returns payment error detail in response body
- Unsupported HTTP method (POST, PUT, etc.) rejected — only GET/HEAD/DELETE allowed
- LLM generation failure may fall back to deterministic source or return ok:false
- Network timeout or agent merchant downtime returns no response

## How this service works

Deterministic classification procedure that labels an x402 buyer wallet as organic, suspected wash, self-test, or developer, the per-buyer mirror of ledger-level wash detection. Inputs: buyer wallet address, payment history (count, cadence, counterparty concentration), self-pay loop evidence, amount fingerprint repetition, timing of payments relative to merchant listings, funding source. Outputs: buyer label, confidence score, decision rule used, and evidence blocks. Thresholds: self-pay loops

## Output

A JSON object containing a plain-prose decision procedure brief (120+ words) classifying x402 buyer behavior into categories: organic, suspected wash, self-test, or developer. Includes the model used (e.g. deepseek/deepseek-v4-flash-0731), generation source (llm, reasoning, or deterministic), ISO-8601 timestamp, service slug, and provider (K-2SO). The 'brief' and 'procedure' fields contain the actionable agent-readable guidance.

## 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": "x402 buyer behavior classification: organic, suspected wash, self-test, develope 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": "x402-buyer-behavior-classification-organic-wash",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "x402-buyer-behavior-classification-organic-wash",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/k-2so-x402-buyer-behavior-classification-organic-vs-wash-28dea836/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)
