# Kronos by ForgeMesh — Decision Outcome Audit

> Kronos by ForgeMesh — Decision Outcome Audit is a paid API for AI agents from kronos.forgemesh.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Retrieves the outcome audit for a previously recorded crypto trading decision, returning PnL, directional correctness verdict, and legacy signal fields.

## Facts

- Endpoint: GET https://kronos.forgemesh.io/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/kronos-by-forgemesh-decision-outcome-audit-a9545344
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W50d16S8HufJJ2O93CaeL

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 kronos-by-forgemesh-decision-outcome-audit-a9545344
```

Example prompt: Can you pull the Kronos audit for decision ID 'a3f7c291-88d4-4b2e-bce1-00f2a1d9e847' and tell me whether that XRP call was a good decision — what was the PnL and did the directional bias play out?

## When to prefer this

Use this endpoint when you need to look up the recorded outcome and verdict of a specific previously logged trading decision by ID — for post-trade auditing, agent performance evaluation, or decision journal retrieval. Prefer this over real-time signal endpoints when the decision has already been made and you need retroactive accuracy assessment. Best suited for autonomous agents that log decision IDs at signal time and later want structured outcome validation.

## Known failure modes

- Missing or invalid decision_id returns an error or empty result
- Decision ID not found in system returns 404 or null outcome
- x402 payment failure (insufficient USDC balance or wrong network) blocks the request
- Expired or out-of-window decision may return stale or unavailable outcome data
- Malformed query parameters result in schema validation errors

## How this service works

Paid crypto market-intelligence API for autonomous agents. Calibrated ranges, signal context, risk state, decision journals, and outcome audits via x402 micropayments on Base.

## Output

Returns a JSON object containing the decision ID, the crypto symbol, an outcome object with PnL percentage and a boolean for directional correctness, a verdict string (e.g. GOOD_DECISION), a directional bias label (e.g. downward), and legacy fields including a suggested action flagged as compatibility-only and not a trading instruction.

## 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/kronos-by-forgemesh-decision-outcome-audit-a9545344/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kronos.forgemesh.io](https://www.zero.xyz/host/kronos.forgemesh.io/llms.txt)
