Paginated list of resolved forecasts with actual outcomes
Paginated list of resolved forecasts with actual outcomes. Each row shows the original ML prediction and its real-world result. Summary includes total count and hit_rate (cache-source rows, matching /api/stats methodology). Filterable by asset, horizon, date range, and source. — $0.02/call. Live track record at /api/stats: ~54% directional hit, ~70% in-range over 15k+ scored forecasts — measured on served predictions, not a backtest.
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-05
updated
Provider
kronossignals.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x36038e1d712c5e39f35952164ec58ec2b96caee7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {},
"queryParams": {
"queryParams": [
"asset",
"horizon",
"from",
"to",
"source",
"limit",
"offset"
]
},
"type": "http"
},
"output": {
"example": {
"disclaimer": "Resolved forecasts from Kronos cache-served rows. Headline hit_rate uses cache-source rows only, matching /api/stats methodology. Not financial advice.",
"generated_at": "2026-01-01T00:00:00.000Z",
"pagination": {
"limit": 100,
"offset": 0,
"total": 211
},
"rows": [
{
"actual_direction": "up",
"asset": "BTC-USD",
"confidence": 0.83,
"forecast_id": "uuid-here",
"hit": true,
"horizon": "1h",
"made_at": "2026-01-01T00:00:00.000Z",
"predicted_direction": "up",
"price_at_forecast": 60136.29,
"price_at_resolution": 60511.99,
"resolved_at": "2026-01-01T01:00:00.000Z",
"return_pct": 0.00624,
"up_prob": 0.83
}
],
"summary": {
"hit_rate": 0.5328,
"sample_note": "Illustrative example only — not live accuracy. Call GET /api/stats for current figures computed from the database.",
"total": 211
}
},
"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": {
"asset": {
"type": "string"
},
"from": {
"format": "date-time",
"type": "string"
},
"horizon": {
"enum": [
"1h",
"4h",
"24h"
],
"type": "string"
},
"limit": {
"default": 100,
"maximum": 500,
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"source": {
"enum": [
"cache",
"paid"
],
"type": "string"
},
"to": {
"format": "date-time",
"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-ledger" # -> 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-ledger");
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-ledger")
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/406.json, and this resource appears in /discovery/resources and /discovery/search.