kronossignals.com

Kronos Crypto Data API

Real-time crypto market data for autonomous agents — perpetual derivatives (funding, open interest, basis), multi-source spot price, liquidation maps, options IV, and macro context. Pay-per-call over x402. ML price-direction forecasts available as a premium add-on.

Live data sourced from major exchanges (Binance, Coinbase, Kraken, OKX, Deribit). Optional premium ML price-direction forecasts for BTC/ETH/SOL. Settled in USDC on Base mainnet via the x402 HTTP micropayment protocol. No API keys. No subscriptions. From $0.01 USDC per call.

Disclaimer: Informational only. Not financial advice. Forecasts are probabilistic model outputs — past accuracy does not guarantee future results. Use at your own risk.

Endpoints & Pricing

Forecasts: $0.05 USDC· Signals: $0.02 USDC. Base mainnet (eip155:8453). Auth: x402 X-PAYMENT header (EIP-3009).

EndpointPrice
GET/api/v1/signals/btc

BTC derivatives intelligence: funding rate, open interest, basis, OI change (1h), funding trend signal. Source: Bybit.

$0.02 USDC
GET/api/v1/signals/eth

ETH derivatives intelligence: funding rate, open interest, basis, OI change (1h), funding trend signal. Source: Bybit.

$0.02 USDC
GET/api/v1/signals/sol

SOL derivatives intelligence: funding rate, open interest, basis, OI change (1h), funding trend signal. Source: Bybit.

$0.02 USDC
GET/api/v1/alerts/btc

BTC market-state alerts: recent regime events (squeeze, breakout, funding extreme, OI surge) in the last 2h + live funding/OI state. Poll for actionable signals.

$0.02 USDC
GET/api/v1/forecast/btc?horizon=1h|4h|24h

Premium add-on — BTC price-direction forecast: up_prob (0–1), price range, confidence. Powered by the Kronos-base ML model (technical-indicator composite fallback).

$0.05 USDC
GET/api/v1/forecast/eth?horizon=1h|4h|24h

Premium add-on — ETH price-direction forecast. Kronos-base ML model calibrated for ETH volatility.

$0.05 USDC
GET/api/v1/forecast/sol?horizon=1h|4h|24h

Premium add-on — SOL price-direction forecast. Kronos-base ML model calibrated for SOL.

$0.05 USDC
GET/api/v1/sample/btc

Free BTC sample response — full schema, no payment required. Use to inspect the response shape before integrating.

FREE

How to Pay (x402)

The server returns HTTP 402 with a signed payment requirement. Your client attaches a USDC EIP-3009 authorization as an X-PAYMENT header and replays the request. The x402 facilitator submits on-chain and covers gas — no wallet pop-ups, no subscriptions, no pre-funding required.

import { wrapFetchWithPaymentFromConfig } from "@x402/fetch";
import { ExactEvmScheme } from "@x402/evm";
import { privateKeyToAccount } from "viem/accounts";

// Set BUYER_PRIVATE_KEY in your environment — never commit a real key
const account = privateKeyToAccount(
  process.env.BUYER_PRIVATE_KEY as `0x${string}`
);

const fetchWithPayment = wrapFetchWithPaymentFromConfig(fetch, {
  schemes: [{
    network: "eip155:8453",  // Base mainnet
    client: new ExactEvmScheme(account),
  }],
});

// $0.05 USDC paid automatically — gasless EIP-3009 flow
const res = await fetchWithPayment(
  "https://kronossignals.com/api/v1/forecast/btc?horizon=1h",
  { method: "GET" }
);
const forecast = await res.json();
console.log(forecast.forecast.up_prob);   // e.g. 0.67
console.log(forecast.indicators.rsi14);   // e.g. 58.2

Install: npm i @x402/fetch @x402/evm viem. Set BUYER_PRIVATE_KEY in your environment — never commit a real key. Facilitator: x402.org/facilitator.

Track Record & Trust

Every forecast is scored against the actual price at the predicted horizon. Results are public, continuously updated, and machine-readable. Verifiable accuracy is the moat.

54.3%
Paid-request hit rate
105 resolved forecasts bought by agents
53.1%
All scored forecasts
29,010 resolved, cache baseline — verify at /api/v1/track-record
/api/statsLive accuracy — hit rate, in-range rate, total calls, cumulative earnings/.well-known/x402x402 discovery manifest — payable endpoints + schemas (machine-readable)/api/openapi.jsonOpenAPI 3.0 specification (machine-readable)/api/healthHealth check (no payment required)

About Kronos Signals

Kronos is a machine-payable crypto market-data API built for autonomous agents. The core service is real-time market data: perpetual-swap derivatives (funding rate, open interest, basis, and trend signals sourced from Bybit), multi-source spot price, liquidation cluster maps, options implied volatility, CEX premium, realized volatility, and macro context — each a pay-per-call x402 endpoint across 16 assets. ML price-direction forecasts are an optional premium add-on: BTC/ETH/SOL/DOGE/BNB/NEAR/ADA forecasts run the Kronos-base ML model (DOGE/BNB graduated from the composite model 2026-07-10; NEAR added 2026-07-15, ADA 2026-07-20), with a transparent EMA/RSI/MACD/ATR technical-indicator composite as the fallback and as the model still serving XRP. Live on Base mainnet; payments settled in USDC via x402.