# Kronos Conformally-Calibrated Crypto Price Forecast

> Kronos Conformally-Calibrated Crypto Price Forecast is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns an honest 80% prediction interval (range_80), point return estimate, and upside probability for BTC, ETH, SOL, XRP, or ADA using conformal calibration.

## Facts

- Endpoint: GET https://x402.coinopai.com/api/kronos/forecast
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-conformally-calibrated-crypto-price-forecast-66e960a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HT36Z2tf1exmqynYB13Gj

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-conformally-calibrated-crypto-price-forecast-66e960a5
```

Example prompt: What's the Kronos conformally-calibrated 80% price prediction interval and upside probability for BTC right now?

## When to prefer this

Choose this endpoint when you need a statistically honest, calibrated uncertainty range for crypto price forecasts rather than a point prediction or directional signal. It is ideal for risk-aware agents that need to communicate uncertainty bounds to users, construct position sizing logic, or audit forecast reliability. Prefer it over raw directional signals when the agent must convey 'what range of outcomes is plausible' rather than 'which direction will price move'.

## Known failure modes

- Unsupported symbol returns an error — only BTC, ETH, SOL, XRP, ADA are supported
- Missing symbol query parameter may return a default or error response
- Payment failure (402) if USDC payment is not provided or is insufficient
- Service unavailability returns 5xx if the Kronos model pipeline is down
- Stale data if the underlying market data feed has not refreshed recently

## How this service works

Kronos by ForgeMesh calibrated crypto price forecast for BTC, ETH, SOL, XRP, and ADA. Returns its forecast horizon, current price, conformal 80% price range, point return, and upside probability for risk-aware autonomous agent planning. Updates hourly; paid in USDC on Base via x402.

## Output

Returns the ticker symbol, a range_80 object representing the empirically-calibrated 80% prediction interval for price movement, a point return estimate (noted as having no demonstrated directional edge), and an upside_probability float between 0 and 1 indicating the likelihood of a positive return.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## 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-conformally-calibrated-crypto-price-forecast-66e960a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
