# Kronos x402 Market Digest API

> Kronos x402 Market Digest API is a paid API for AI agents from kronossignals.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a structured market intelligence digest for a specified crypto asset, including regime classification, calibrated upside probability, funding rate, basis, volatility, and fear-greed index, delivered via x402 micropayment.

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/digest/%7Basset%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-x402-market-digest-api-b3e4d9e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nwoAx3x_jAqIxW6IPcsAk

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-market-digest-api-b3e4d9e5
```

Example prompt: Pull the Kronos market digest for BTC and tell me the current regime, calibrated 24-hour upside probability, funding rate interpretation, and overall thesis.

## When to prefer this

Choose this endpoint when you need a compact, multi-signal market intelligence summary for a specific crypto asset in a single call — combining regime, sentiment, derivatives signals, and a calibrated ML probability — rather than querying each signal type individually. Prefer it over raw price or forecast endpoints when you want an interpretive digest with a human-readable thesis and driver explanations ready for downstream reasoning or display.

## Known failure modes

- Invalid or unsupported asset slug returns an error — only the ~16 supported slugs (btc, eth, sol, bnb, xrp, etc.) are valid
- Payment not completed via x402 results in 402 Payment Required response before data is returned
- Network or upstream data source outage may cause stale or unavailable digest
- Misconfigured x402 wallet or insufficient USDC balance blocks access

## How this service works

Paid market-intelligence API over x402

## Output

A JSON object containing: asset identifier, timestamp, market regime label (e.g. breakout, squeeze), a human-readable thesis paragraph, calibrated and raw upside probability over 24h, a list of named market drivers (funding rate, basis, realized vol, fear-greed, model probability) each with value and interpretation, caveats, disclaimer, and a reference link to the full forecast endpoint.

## 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": {
      "asset": {
       "type": "string",
       "description": "Asset slug — btc, eth, sol, bnb, xrp, etc."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-02T00:00:00.000Z",
  "asset": "BTC-USD",
  "regime": "breakout",
  "thesis": "BTC shows positive funding (0.0100%); positive basis (0.0150%); breakout regime; 30d vol 45.2% (normal); fear-greed 72 (Greed); model assigns 64% upside probability over 24h horizon.",
  "caveats": [
   "Not financial advice. Informational only."
  ],
  "drivers": [
   {
    "name": "funding_rate",
    "value": 0.0001,
    "interpretation": "Positive funding rate — longs paying shorts, mild bullish bias"
   },
   {
    "name": "basis",
    "value": 0.00015,
    "interpretation": "Positive basis (0.0150%) — futures premium over spot"
   },
   {
    "name": "regime",
    "value": "breakout",
    "interpretation": "Regime: breakout — breakout"
   },
   {
    "name": "realized_vol_30d",
    "value": 0.452,
    "interpretation": "30d annualized realized volatility: 45.2% (normal)"
   },
   {
    "name": "fear_greed",
    "value": 72,
    "interpretation": "Fear & Greed 72 (Greed) — elevated sentiment"
   },
   {
    "name": "up_prob_calibrated",
    "value": 0.64,
    "interpretation": "Kronos model: 64% calibrated upside probability over 24h (model_type: kronos_ml)"
   }
  ],
  "disclaimer": "Informational only. Not financial advice. Past signals do not guarantee future results.",
  "up_prob_raw": 0.72,
  "forecast_ref": "/api/v1/forecast/btc",
  "forecast_note": "up_prob_calibrated is the preferred metric (PAV-isotonic calibrated). up_prob_raw is the model's uncalibrated directional probability.",
  "up_prob_calibrated": 0.64
 }
}
```

## More

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