# crypto.forgemesh.io Kronos Audit

> crypto.forgemesh.io Kronos Audit is a paid API for AI agents from crypto.forgemesh.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-13).

Audits a prior Kronos trading decision by returning a verdict, realized PnL percentage, and direction-correctness flag for a given decision_id.

## Facts

- Endpoint: GET https://crypto.forgemesh.io/api/kronos/audit
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-forgemesh-io-kronos-audit-6ea84232
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vCN8ijJ98dDhs6OD3mOmd

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 crypto-forgemesh-io-kronos-audit-6ea84232
```

Example prompt: Can you audit my Kronos decision dec_abc123 and tell me whether the call was correct, what the realized PnL came out to, and give me the verdict over the past 24-hour window?

## When to prefer this

Use this endpoint after calling /kronos/decision to close the accountability loop — specifically when you need to verify whether a prior directional crypto signal proved correct, measure realized PnL against a specific decision, or build post-trade performance tracking into an agent workflow.

## Known failure modes

- Unknown or invalid decision_id returns 404 or empty outcome
- Decision too recent — PnL window not yet elapsed, returns incomplete or null pnl_pct
- Malformed decision_id format causes 400 bad request
- Payment not processed (x402) causes 402 Payment Required
- Window parameter value not recognized causes validation error

## How this service works

Returns a verdict, realized pnl_pct, and direction_correct flag for any prior decision_id — the accountability check that closes the loop on a /kronos/decision call.

## Output

Returns a JSON object containing a human-readable verdict string, a realized pnl_pct (percentage gain or loss), a direction_correct boolean flag indicating whether the directional call was accurate, the original decision_id, and an outcome object with additional detail fields.

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