Kronos Signals
Pay-per-call BTC/ETH/SOL forecasts & crypto derivatives signals for autonomous agents.
Powered by the Kronos-base ML model. Settled in USDC on Base mainnet via the x402 HTTP micropayment protocol. No API keys. No subscriptions. From $0.01 USDC per call.
Endpoints & Pricing
Forecasts: $0.01 USDC· Signals: $0.02 USDC. Base mainnet (eip155:8453). Auth: x402 X-PAYMENT header (EIP-3009).
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.01 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.2Install: 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.
About Kronos Signals
Kronos is a machine-payable market-intelligence API built for autonomous agents. The forecast endpoints fetch live OHLCV data and run the Kronos-base ML model — a composite of six indicator votes: price vs. EMA20, price vs. EMA50, EMA20/EMA50 crossover, RSI(14) momentum, MACD(12,26,9) line sign, and MACD histogram sign. The derivatives endpoint provides real-time funding rate, open interest, basis, and trend signals sourced from Bybit. Live on Base mainnet; payments settled in USDC via x402.