# Kronos by ForgeMesh — Crypto Market Forecast (x402)

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

Returns calibrated 80% price range forecasts, upside probability, and signal context for a given crypto symbol via x402 micropayment on Base.

## Facts

- Endpoint: GET https://kronos.forgemesh.io/api/kronos/forecast
- Price: $0.05/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-forecast-x402-625e8bf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QOEL2-MW87UmOX5F-zXs9

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-forecast-x402-625e8bf5
```

Example prompt: What's Kronos's calibrated 80% price range and upside probability for BTC/USD right now?

## When to prefer this

Choose this endpoint when an AI agent needs a statistically calibrated, probabilistic price range for a crypto asset rather than a raw price quote or sentiment signal. It is particularly suited for autonomous trading agents that need a structured risk state and signal context before executing or gating a trade, and for workflows that support x402 micropayment on Base for per-call billing.

## Known failure modes

- Missing or invalid symbol query parameter returns an error or empty result
- Payment not fulfilled via x402 results in 402 Payment Required response
- Symbol not supported by the service returns an error or no forecast
- Network/service unavailability returns a 5xx error
- Stale market data may reduce forecast reliability during low-liquidity periods

## 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 with: the queried symbol, forecast horizon (~5h), an 80% calibrated price range (low/high) computed via conformal prediction, the current price, upside probability (0-1), and contextual notes explaining range caveats (why_not_high array).

## 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"
      },
      "range_80": {
       "type": "object"
      },
      "why_not_high": {
       "type": "array"
      },
      "upside_probability": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC/USD",
  "horizon": "~5h",
  "range_80": {
   "low": 60275,
   "high": 62806,
   "method": "conformal",
   "coverage_target": 0.8
  },
  "why_not_high": [
   "The calibrated interval is designed for approximate coverage, not certainty; some realized prices can still land outside the range."
  ],
  "current_price": 61234.5,
  "upside_probability": 0.52
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-by-forgemesh-crypto-market-forecast-x402-625e8bf5/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)
