# Kronos by ForgeMesh — Crypto Market Intelligence Decision

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

Returns calibrated directional bias, anomaly scores, confidence levels, and risk context for a crypto trading pair via x402 micropayment

## Facts

- Endpoint: GET https://kronos.forgemesh.io/api/kronos/decision
- Price: $0.15/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-crypto-market-intelligence-decision-ebdbf935
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BOjKCi9J9PkOtUvZ2cHdD

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-crypto-market-intelligence-decision-ebdbf935
```

Example prompt: What's Kronos's current market signal for BTC/USD — give me the directional bias, calibrated confidence, and anomaly level so I can decide whether to act.

## When to prefer this

Choose this endpoint when an autonomous agent needs calibrated, historically-anchored crypto market signals with anomaly detection and auditability — especially when the agent must justify or log its decisions via a decision ID and later call /kronos/audit to verify outcomes. Prefer this over raw price feeds when confidence calibration and risk disclosure are required for compliance or accountability in automated workflows.

## Known failure modes

- Missing or invalid symbol query parameter returns an error
- Payment not completed via x402 returns 402 Payment Required
- Unsupported trading pair symbol returns empty or error response
- Network timeout on Base payment layer causes request failure
- Symbol format mismatch (e.g. BTCUSD vs BTC/USD) may return no data

## 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 trading pair symbol, directional bias (e.g. upward/downward), raw confidence score (0–1), calibrated confidence percentage, anomaly score, anomaly level label, agreement score across signals, a unique decision ID for audit tracking, a next-step recommendation with cost and timing, a risk disclosure block, and flags indicating this is market intelligence only and not financial advice.

## 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/kronos-by-forgemesh-crypto-market-intelligence-decision-ebdbf935/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)
