# Kronos Trade Decision Audit

> Kronos Trade Decision Audit is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Audits a prior crypto trade decision against real price outcomes, returning a verdict of GOOD_DECISION, BAD_DIRECTION, or NOISE with PnL data

## Facts

- Endpoint: GET https://x402.coinopai.com/api/kronos/audit
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinopai-com-c7950cb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4EZz9dFBfs8zHUdf-kmos

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 x402-coinopai-com-c7950cb6
```

Example prompt: Can you audit my Kronos trade decision with ID 'kd_abc123' and tell me whether it was a GOOD_DECISION, BAD_DIRECTION, or NOISE — and what the PnL was?

## When to prefer this

Use this endpoint as the final step of the Kronos trade loop — after calling /kronos/preflight and /kronos/decision — to close the accountability cycle on a specific decision_id. Ideal when you want to know whether a directional signal generated by Kronos actually played out in the market, with a clear GOOD_DECISION / BAD_DIRECTION / NOISE verdict. Prefer this over manual PnL tracking when you need a structured, auditable record of signal quality.

## Known failure modes

- Missing or invalid decision_id returns an error — decision_id is required
- Unknown decision_id (e.g. not generated by /kronos/decision) returns not-found or empty result
- Decision too recent with no price movement yet may return NOISE or insufficient data
- Payment failure (402) if USDC payment header is missing or underfunded

## How this service works

The accountability step. Verify any Kronos decision_id against later market prices. Returns whether direction held, PnL%, and a verdict.

## Output

Returns a verdict string (GOOD_DECISION, BAD_DIRECTION, or NOISE), a decision_id, and an outcome object containing PnL and supporting price data for the audited decision

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "decision_id"
     ],
     "properties": {
      "window": {
       "type": "string"
      },
      "decision_id": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "outcome": {
       "type": "object"
      },
      "verdict": {
       "type": "string"
      },
      "decision_id": {
       "type": "string"
      },
      "legacy_fields": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "XRP",
  "outcome": {
   "pnl_pct": 0.023,
   "direction_correct": true
  },
  "verdict": "GOOD_DECISION",
  "decision_id": "uuid",
  "legacy_fields": {
   "suggested_action": {
    "value": "CONSIDER_SHORT",
    "compatibility_only": true,
    "not_a_market_activity_instruction": true
   }
  },
  "directional_bias": "downward"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinopai-com-c7950cb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
