# Kronos x402 Market-Intelligence Alerts API

> Kronos x402 Market-Intelligence Alerts 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 real-time heuristic market-state alerts (funding rate extremes, volatility, regime signals) for a specified crypto asset, paid per-call via x402 micropayment protocol.

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/alerts/%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-intelligence-alerts-api-2952bc74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_of8-j-vV-zSkx9iiaTldi

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-intelligence-alerts-api-2952bc74
```

Example prompt: Check Kronos for any active market-state alerts on ETH-USD right now — I want to know the funding rate, whether there's any directional pressure, and if the regime engine has flagged anything in the last couple of hours.

## When to prefer this

Choose this endpoint when you need real-time, per-call heuristic market-state intelligence (funding rate levels, regime classification, open interest) for crypto perpetual markets, especially when you want pay-as-you-go pricing via x402 micropayments rather than a subscription. Prefer over generic price feeds when regime context and derivative market signals (not just spot price) are required.

## Known failure modes

- Payment not fulfilled via x402 — returns 402 Payment Required if micropayment header is missing or invalid
- Unknown or unsupported asset symbol — may return an error or empty/unavailable response
- Bybit/OKX data feed delay — as_of timestamp may lag real-time by seconds
- available: false in response if upstream data is temporarily unavailable
- Malformed asset path parameter returns 404 or validation error

## How this service works

Paid market-intelligence API over x402

## Output

A JSON object containing: the asset queried, a timestamp, availability flag, active alerts array (empty if none triggered), and a current_state block with a human-readable regime description, raw funding rate, annualized funding rate, open interest figure, and the state timestamp. Includes a disclaimer that signals are heuristic and not financial advice.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-02T10:00:05.000Z",
  "asset": "ETH-USD",
  "available": true,
  "disclaimer": "Heuristic market-state alerts derived from Bybit/OKX perpetual swap data and the Kronos regime engine. Not financial advice.",
  "active_alerts": [],
  "current_state": {
   "read": "ETH: neutral funding (5.5% ann.) — no strong directional pressure; no regime alerts triggered in the last 2h. Heuristic only.",
   "as_of": "2026-07-02T10:00:00.000Z",
   "funding_rate": 0.00005,
   "open_interest": 3210000,
   "funding_annualized": 0.05475
  }
 }
}
```

## More

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