# Forgemesh Kronos Decision Journal Entry

> Forgemesh Kronos Decision Journal Entry is a paid API for AI agents from crypto.forgemesh.io, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-16).

Returns a full auditable decision journal entry for a crypto symbol, combining directional bias, calibrated confidence, anomaly score, and agreement score into one record with a unique decision_id.

## Facts

- Endpoint: GET https://crypto.forgemesh.io/api/kronos/decision
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-kronos-decision-journal-entry-46723b9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r7Wfy0jUDqdNDp2Q1n6iJ

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 forgemesh-kronos-decision-journal-entry-46723b9b
```

Example prompt: Pull a full Kronos decision journal entry for BTC — I need the directional bias, calibrated confidence, anomaly score, and agreement score all in one auditable record with a decision_id I can verify later.

## When to prefer this

Use this endpoint when you need a single comprehensive, auditable decision record that combines directional signal, anomaly detection, and calibration in one call — especially when you need a decision_id to later verify outcomes via the accountability endpoint. Prefer over individual signal or anomaly endpoints when building agent decision pipelines that require full traceability.

## Known failure modes

- Missing or invalid symbol parameter returns error or empty result
- Symbol not supported by Forgemesh returns no data
- Payment not processed (x402 protocol failure) blocks access
- Stale market data may affect score freshness
- Rate limiting or quota exhaustion returns 402/429

## How this service works

Returns a full decision journal entry — directional_bias, calibrated_confidence, anomaly_score, and agreement_score — plus a decision_id, combining signal, anomaly, and calibration checks into one auditable record for agent decision pipelines.

## Output

Returns a JSON object containing: decision_id (unique auditable record identifier), directional_bias (bullish/bearish/neutral), calibrated_confidence (0-1 probability), anomaly_score (0-1), anomaly_level (label), agreement_score (0-1), anomaly_review_label, next_step guidance object, risk_disclosure object, why_not_high array explaining confidence suppression, verified boolean, and market_intelligence_only flag.

## 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",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      },
      "verified": {
       "type": "boolean"
      },
      "next_step": {
       "type": "object"
      },
      "confidence": {
       "type": "number"
      },
      "decision_id": {
       "type": "string"
      },
      "why_not_high": {
       "type": "array"
      },
      "anomaly_level": {
       "type": "string"
      },
      "anomaly_score": {
       "type": "number"
      },
      "legacy_fields": {
       "type": "object"
      },
      "agreement_score": {
       "type": "number"
      },
      "risk_disclosure": {
       "type": "object"
      },
      "directional_bias": {
       "type": "string"
      },
      "anomaly_review_label": {
       "type": "string"
      },
      "calibrated_confidence": {
       "type": "number"
      },
      "market_intelligence_only": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC/USD",
  "verified": true,
  "next_step": {
   "cost": "$0.07",
   "review_step": "Call /kronos/audit after 1h to verify"
  },
  "confidence": 0.514,
  "decision_id": "uuid",
  "why_not_high": [
   "Directional confidence is intentionally capped by observed historical accuracy, not boosted by signal magnitude."
  ],
  "anomaly_level": "normal",
  "anomaly_score": 14,
  "agreement_score": 93,
  "risk_disclosure": {
   "no_trade_instruction": true,
   "not_financial_advice": true,
   "market_intelligence_only": true
  },
  "directional_bias": "upward",
  "anomaly_review_label": "ignore",
  "calibrated_confidence": 51,
  "market_intelligence_only": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-kronos-decision-journal-entry-46723b9b/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)
