Dogecoin (DOGE) price direction forecast
Dogecoin (DOGE) price direction forecast. Kronos-base (60-path Monte-Carlo) ML model, cached ~20 min — switched from composite 2026-07-10. Measured on predictions actually served: 62% directional over 3,300+ scored DOGE forecasts — above our ~54% all-asset headline; verify per-asset at /api/stats (beta_accuracy). Falls back to the composite heuristic if the cache is briefly stale. Pay-per-call via x402 on Base USDC. Live scored track record at /api/stats — not a backtest.
50000 (raw units)
price
8
calls / 30d
5
unique payers
2026-09-10
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": {
"accuracy_note": "Kronos-base model (switched from composite 2026-07-10). Measured on predictions actually served: 62% directional over 3,300+ scored DOGE forecasts — above the ~54% all-asset headline. Prior composite record (36.1%/n147) retained at /api/stats. Verify per-asset at /api/stats (beta_accuracy.per_asset).",
"asset": "DOGE-USD",
"beta": false,
"cache_age_seconds": 180,
"cached": true,
"disclaimer": "Kronos-base ML forecast for DOGE-USD, cached; may briefly fall back to the composite heuristic. Informational only, not financial advice.",
"forecast": {
"confidence": 0.55,
"expected_close": null,
"horizon_bars": 1,
"pred_volatility": null,
"quantiles": null,
"range_high": 0.186,
"range_low": 0.174,
"up_prob": 0.55
},
"generated_at": "2026-01-01T00:00:00.000Z",
"horizon": "1h",
"model": "kronos-base-60path-t1-v2",
"model_type": "kronos_ml",
"price": {
"atr": 0.004,
"close": 0.18
},
"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/doge" # -> 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/doge");
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/doge")
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/396.json, and this resource appears in /discovery/resources and /discovery/search.