# Kronos Signals SOL Market Intelligence API

> Kronos Signals SOL Market Intelligence 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-16).

Returns real-time Solana (SOL-USD) market signals including funding rate, open interest, basis, and a heuristic read on market conditions via x402 micropayment

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/signals/sol
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-sol-market-intelligence-api-21de66fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WDjnlrtj2_1lPtt7MUfEA

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-sol-market-intelligence-api-21de66fc
```

Example prompt: What's the current Kronos signal for SOL — is funding elevated, is open interest growing, and is there a squeeze risk I should know about before trading?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.02 USDC) structured market-intelligence snapshot for SOL-USD perpetual futures — specifically when you want funding rate trend, open interest dynamics, and a pre-computed heuristic squeeze-risk assessment rather than raw tick data. Prefer this over generic data feeds when you want an opinionated signal with narrative context rather than just numbers.

## Known failure modes

- Payment not received or x402 flow fails — endpoint returns 402 Payment Required
- Stale data if Bybit feed lags beyond 5 minutes — noted in disclaimer
- Asset data temporarily unavailable — 'available' field returns false
- Malformed request parameters — 400 Bad Request
- Service downtime or upstream Bybit connectivity issue — 503 or timeout

## How this service works

Real-time crypto derivatives signals for BTC/ETH/SOL/BNB/XRP/DOGE/ADA/AVAX/LINK/DOT/LTC/TRX/BCH/ATOM/NEAR/APT/HYPE-USD: perpetual futures funding rate (raw + annualized), next_funding_time, funding_interval_hours, open interest and 1h change, basis (perp vs index), funding-rate trend. Live data from Bybit/OKX via Kronos market_signals. Pay-per-call via x402.

## Output

A JSON object containing: a plain-English heuristic 'read' summarizing market conditions; funding rate and its annualized equivalent; funding trend direction (rising/falling); open interest with 1-hour absolute and percentage change; basis; mark and index prices; 24h volume; next funding timestamp; data source (Bybit); and a disclaimer that this is heuristic-only data with up to 5-minute lag.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-sol-market-intelligence-api-21de66fc/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)
