# Agent Payment Attribution Distribution Standard

> Agent Payment Attribution Distribution Standard 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-19).

Returns a standard specification defining how x402 agent payments can carry attribution envelopes, split primitives, receipt metadata, and discovery pointers linking payments to originating agents, builders, and downstream requests.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-payment-attribution-distribution-standard
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-payment-attribution-distribution-standard-46a58bf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ICJ8V4kX-1vDoyj9BaHcj

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-payment-attribution-distribution-standard-46a58bf6
```

Example prompt: Can you fetch the agent payment attribution distribution standard so I know how to attach builder attribution envelopes and split primitives to our x402 payments, and show me the privacy-preserving integration notes?

## When to prefer this

Choose this endpoint when you need a canonical, agent-readable specification for implementing x402 payment attribution, revenue splitting, or builder distribution logic — especially when you need privacy-preserving variants or integration notes for spend authority and settlement layers. Prefer it over generic x402 documentation when you specifically need to structure payments so they reference originating agents and downstream requests.

## Known failure modes

- Payment not included — returns HTTP 402 requiring 0.002 USDC payment before content is unlocked
- Invalid method — only GET/HEAD/DELETE are accepted; POST or PUT returns an error
- Unknown topic override — if the topic query param doesn't match a known slug, the response may fall back to default or return an error
- Service unavailable — upstream LLM or reasoning engine failure results in a non-ok response

## How this service works

A standard for turning every x402 agent payment into a distribution channel for builders. Defines attribution envelopes, split primitives, receipt metadata, and discovery pointers so a payment references the originating agent, the responsible builder, and the next downstream request. Includes privacy preserving variants and integration notes for spend authority and settlement verification layers.

## Output

A structured brief or specification document describing attribution envelopes, split primitives, receipt metadata schemas, discovery pointers, privacy-preserving variants, and integration guidance for spend authority and settlement verification layers in x402 agent payments. Includes a service slug, generation source indicator, ISO-8601 timestamp, and optional decision procedure prose.

## 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 payment attribution distribution standard 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)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-payment-attribution-distribution-standard-46a58bf6/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)
