# Kronos BTC Forecast

> Kronos BTC Forecast is a paid API for AI agents from api.nexismvp.com, paid per call via x402, $0.0005/call, status unknown (last checked 2026-09-14).

Returns the latest experimental BTC price forecast with timestamped predictions over a defined horizon, sourced from the Kronos live HUD.

## Facts

- Endpoint: GET https://api.nexismvp.com/forecast/btc
- Price: $0.0005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-btc-forecast-ba71ce59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eAsjiiFAOqowNQwsNJ1Mr

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-btc-forecast-ba71ce59
```

Example prompt: Pull the latest Kronos BTC price forecast for me — I want to see the predicted close prices and how far out the forecast horizon goes.

## When to prefer this

Choose this endpoint when you need a ready-made, timestamped BTC price prediction series without running your own model. It is ideal for dashboards, monitoring pipelines, or pre-trade signal checks that want a lightweight forecast snapshot from the Kronos HUD. Prefer it over raw market data endpoints when you specifically need a forward-looking predicted close price series rather than current spot price or historical data.

## Known failure modes

- API returns 402 Payment Required if x402 payment is not provided or fails
- Forecast data may be stale if the live HUD has not updated recently
- No input validation errors expected as no parameters are required
- Service may be temporarily unavailable returning 5xx errors
- Experimental nature of forecast means model output should not be relied upon for financial decisions

## How this service works

Kronos BTC price forecast (latest, from the live HUD). Experimental/informational only — not financial advice.

## Output

Returns a JSON object containing the BTC symbol, a generated_at timestamp, a horizon_minutes value indicating forecast length, an interval_minutes value for spacing between predictions, and a predictions array of objects each with a timestamp and a close price (float).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "symbol",
      "generated_at",
      "predictions"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      },
      "predictions": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "timestamp",
         "close"
        ],
        "properties": {
         "close": {
          "type": "number"
         },
         "timestamp": {
          "type": "string",
          "format": "date-time"
         }
        }
       }
      },
      "generated_at": {
       "type": "string",
       "format": "date-time"
      },
      "horizon_minutes": {
       "type": "integer"
      },
      "interval_minutes": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

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