# Kronos Signals BTC Alerts API

> Kronos Signals BTC 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-14).

Returns real-time Bitcoin market-intelligence alerts including funding rate extremes, open interest, and crowded-position regime signals

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/alerts/btc
- Price: $0.02/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-alerts-api-9989f620
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_otXayHMcg8g-sbQZi9OGe

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-alerts-api-9989f620
```

Example prompt: Check the current Kronos Signals BTC alerts — I want to know if there are any extreme funding rate or squeeze risk conditions active right now for Bitcoin.

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of Bitcoin derivatives market conditions — specifically funding rate extremes, open interest levels, and crowded-position regime signals — without building your own data pipeline. Best suited for agents that need a single paid-per-call heuristic signal about BTC market stress rather than a subscription feed or raw exchange data.

## Known failure modes

- Payment not included or insufficient — x402 payment required ($0.02 USDC) before data is returned
- Data lag — market state may be up to 5 minutes stale
- No active alerts — response returns empty active_alerts array when market is quiet
- Service unavailable — upstream data feed issues could cause endpoint downtime
- Invalid request format — malformed query parameters rejected

## How this service works

Real-time Bitcoin (BTC) market-regime alerts: volatility squeeze, breakout, funding-rate extreme, open-interest surge — derived from live derivatives data. Event feed for crypto trading agents. Pay-per-call via x402 on Base USDC.

## Output

A JSON object containing the current BTC-USD market state including: the current funding rate (8h and annualized), open interest, a human-readable regime description, and a list of active alerts (each with event type like 'funding_extreme', severity level, detection timestamp, and details like whether longs or shorts are paying). Data is marked as heuristic and may lag up to 5 minutes.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-30T12:00:05.000Z",
  "asset": "BTC-USD",
  "available": true,
  "disclaimer": "Heuristic market-state alerts. Not financial advice. Data lags up to 5 minutes.",
  "active_alerts": [
   {
    "details": {
     "sign": "longs_paying",
     "annualized_pct": 42.1,
     "funding_rate_8h": 0.00096
    },
    "severity": "high",
    "event_type": "funding_extreme",
    "detected_at": "2026-06-30T11:45:00.000Z"
   }
  ],
  "current_state": {
   "read": "BTC: elevated positive funding (10.9% ann.) — longs paying shorts, crowded-long / squeeze risk; 1 active regime alert(s) in the last 2h (funding_extreme). Heuristic only.",
   "as_of": "2026-06-30T12:00:00.000Z",
   "funding_rate": 0.0001,
   "open_interest": 85000,
   "funding_annualized": 0.1095
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-btc-alerts-api-9989f620/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)
