# Kronos x402 API – ETH Snapshot

> Kronos x402 API – ETH Snapshot 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 a real-time Ethereum market-intelligence snapshot including spot price, derivatives signals, ML price forecast, and regime alerts via x402 micropayment

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/snapshot/eth
- 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-x402-api-eth-snapshot-44ed16b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ez93xUO3CJgrsW4BlR-uK

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-x402-api-eth-snapshot-44ed16b9
```

Example prompt: Pull me the latest Kronos snapshot for ETH — I want the current spot price, the ML forecast up-probability and expected price range for the next hour, and any active regime alerts or derivatives signals like funding rate and open interest.

## When to prefer this

Choose this endpoint when you need a single bundled ETH market-intelligence payload combining spot price, ML directional forecast, derivatives metrics, and regime alerts in one call — rather than querying separate endpoints for each signal. Ideal for trading assistants or portfolio agents that need fast, structured ETH context without assembling multiple data sources. The x402 micropayment model means no API key management; pay per call at $0.08 USDC.

## Known failure modes

- 402 Payment Required if x402 payment header is missing or insufficient
- Stale data if upstream Binance or Deribit feed is delayed
- Forecast unavailable flag if ML model cache has expired
- Empty active_alerts array when no regime conditions are triggered (not an error)
- Network timeout if kronossignals.com is unreachable

## How this service works

Full crypto asset snapshot in one call (all 16 assets): real-time Binance spot price, derivatives (funding rate, OI, basis from Bybit/OKX perp), market regime alerts (BTC only). FORECASTS: BTC/ETH/SOL only (Kronos ML coverage). DERIVATIVES DATA: all 16 assets. Bundle replaces 3 separate paid calls — $0.08 vs $0.09 à la carte. For AI agents & trading bots. Live track record at /api/stats: ~54% hit over 15k+ scored forecasts, not a backtest.

## Output

A JSON snapshot containing: as-of timestamp, asset identifier, spot price (from Binance), derivatives data (funding rate, annualized rate, funding trend, basis, mark price, open interest), ML forecast (model name, horizon, up-probability, range low/high, expected close), market regime state (current state description, active alerts), and a disclaimer. All wrapped in a structured JSON object with an availability flag per sub-section.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-02T10:00:00.000Z",
  "asset": "BTC-USD",
  "price": 107500,
  "regime": {
   "available": true,
   "active_alerts": [],
   "current_state": {
    "read": "BTC: neutral funding; no regime alerts in the last 2h. Heuristic only.",
    "funding_rate": 0.0001,
    "open_interest": 84320.15
   }
  },
  "forecast": {
   "model": "kronos-base-60path-t1-v2",
   "horizon": "1h",
   "up_prob": 0.62,
   "available": true,
   "range_low": 106300,
   "range_high": 108700,
   "expected_close": 107620.5
  },
  "disclaimer": "Bundle of derivatives heuristics + Kronos ML forecast. Not financial advice.",
  "derivatives": {
   "read": "Positive funding (10.9% ann.) — longs paying shorts. Heuristic only.",
   "basis": 0.000186,
   "available": true,
   "mark_price": 107510,
   "funding_rate": 0.0001,
   "funding_trend": "flat",
   "open_interest": 84320.15,
   "funding_rate_annualized": 0.1095
  },
  "price_source": "Binance spot"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-x402-api-eth-snapshot-44ed16b9/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)
