Real-time and ML-forecasted Ethereum (ETH) price
Real-time and ML-forecasted Ethereum (ETH) price. Kronos deep-learning model: up-probability, expected close, price range, p10-p90 quantiles, forward volatility across 1h/4h/24h horizons. Crypto price prediction / price forecast API for AI agents and trading bots. Pay-per-call via x402 on Base USDC. Live track record at /api/stats: ~54% directional hit, ~70% in-range over 15k+ scored forecasts — measured on served predictions, not a backtest.
50000 (raw units)
price
21
calls / 30d
3
unique payers
2026-09-17
updated
Provider
kronossignals.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x36038e1d712c5e39f35952164ec58ec2b96caee7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {},
"queryParams": {
"horizon": "1h"
},
"type": "http"
},
"output": {
"example": {
"asset": "ETH-USD",
"cache_age_seconds": 180,
"cached": true,
"disclaimer": "Kronos-base ML forecast (60-path Monte-Carlo), cached; regenerated every ~20 min. Informational only, not financial advice.",
"forecast": {
"confidence": 0.65,
"expected_close": 2515.5,
"horizon_bars": 1,
"n_paths": 60,
"pred_high": 2580,
"pred_low": 2425,
"pred_volatility": 0.018,
"prob_up": 0.65,
"quantiles": {
"p10": 2440,
"p25": 2475,
"p50": 2515,
"p75": 2548,
"p90": 2580
},
"range_high": 2567.5,
"range_low": 2432.5,
"up_prob": 0.65
},
"generated_at": "2026-01-01T00:00:00.000Z",
"horizon": "1h",
"model": "kronos-base-60path-t1-v2",
"price": {
"atr": 45,
"close": 2500
},
"source": "Kronos-base (cached, 60-path MC)"
},
"example_kind": "illustrative_schema_only",
"example_note": "Placeholder values and timestamps, not market data.",
"type": "json"
}
},
"routeTemplate": ":var1",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"properties": {
"horizon": {
"default": "1h",
"description": "Forecast horizon: 1h = 1-hour candles, 4h = 4-hour candles, 24h = daily candles",
"enum": [
"1h",
"4h",
"24h"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://kronossignals.com/api/v1/forecast/eth" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://kronossignals.com/api/v1/forecast/eth");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://kronossignals.com/api/v1/forecast/eth")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/415.json, and this resource appears in /discovery/resources and /discovery/search.