# Kronos Signals BTC Forecast Path Fan

> Kronos Signals BTC Forecast Path Fan is a paid API for AI agents from kronossignals.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns p10/p25/p50/p75/p90 quantile forecast paths, expected close price, and forward volatility for Bitcoin at 1h, 4h, and 24h horizons using 60-path Monte Carlo simulation refreshed every 20 minutes.

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/forecast-path/btc
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-btc-forecast-path-fan-b4e1898e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BaaZs48WibkIQKAofYzUK

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-signals-btc-forecast-path-fan-b4e1898e
```

Example prompt: What's the Kronos Monte Carlo forecast fan for Bitcoin right now — give me the p10 through p90 quantiles and expected close at the 1h, 4h, and 24h horizons, plus the forward volatility estimates?

## When to prefer this

Use this endpoint when you need a full probabilistic forecast fan for Bitcoin price — not just a point estimate — with distinct quantiles to reason about upside/downside risk. Prefer it over simple price endpoints when building risk-aware trading signals, scenario analysis, or agent reasoning about BTC uncertainty over multiple time horizons. Choose this over the broader market screener when you specifically need BTC path distribution detail.

## Known failure modes

- Payment not provided or insufficient (402 Payment Required)
- Monte Carlo simulation data temporarily unavailable due to refresh cycle gap
- Rate limit exceeded for the endpoint
- Invalid or malformed request parameters
- Service downtime causing 503 response

## How this service works

Kronos forecast path fan for BTC/ETH/SOL: p10/p25/p50/p75/p90 quantiles, expected close and forward volatility at 1h, 4h and 24h horizons, from 60-path Kronos-base Monte-Carlo runs refreshed every 20 min. Discrete-horizon distributions (no interpolation). Informational only, not financial advice. Live track record at /api/stats: ~54% directional hit, ~70% in-range over 15k+ scored forecasts — measured on served predictions, not a backtest.

## Output

Returns a discrete-horizon probability distribution for BTC price: five quantile paths (p10, p25, p50, p75, p90), an expected close price, and forward volatility estimates at 1-hour, 4-hour, and 24-hour horizons, derived from 60-path Monte Carlo simulation refreshed every 20 minutes. No interpolation between horizons.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-btc-forecast-path-fan-b4e1898e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kronossignals.com](https://www.zero.xyz/host/kronossignals.com/llms.txt)
