Research OHLCV candle forecast via Kronos-mini (financial K-line foundation model)
Research OHLCV candle forecast via Kronos-mini (financial K-line foundation model). Not financial advice. Symbols BTCUSDT/ETHUSDT
50000 (raw units)
price
11
calls / 30d
2
unique payers
2026-09-16
updated
Provider
vendsdk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc648116b5deBE4AF7D78838AA468d07e0A9Ab697",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {},
"queryParams": {
"interval": "1h",
"lookback": "64",
"pred_len": "6",
"symbol": "BTCUSDT"
},
"type": "http"
},
"output": {
"example": {
"disclaimer": "Research forecast only. Not financial advice.",
"forecast": [
{
"close": 1,
"high": 1,
"low": 1,
"open": 1,
"t": "2026-07-10T12:00:00Z",
"volume": 0
}
],
"interval": "1h",
"model_id": "NeoQuasar/Kronos-mini",
"ok": true,
"service": "kronos-forecast",
"summary": {
"direction": "up",
"pct_change": 0
},
"symbol": "BTCUSDT"
},
"type": "json"
}
},
"routeTemplate": "/api/v/kronos-forecast",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"interval": {
"description": "15m | 1h (default) | 4h",
"type": "string"
},
"lookback": {
"description": "History bars 16–256, default 64 (faster)",
"type": "string"
},
"model": {
"description": "mini only in v1",
"type": "string"
},
"pred_len": {
"description": "Forecast bars 1–24, default 6 (faster)",
"type": "string"
},
"symbol": {
"description": "BTCUSDT (default) or ETHUSDT",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"disclaimer": {
"type": "string"
},
"forecast": {
"type": "array"
},
"interval": {
"type": "string"
},
"model_id": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"service": {
"type": "string"
},
"summary": {
"type": "object"
},
"symbol": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://vendsdk.com/api/v/kronos-forecast" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vendsdk.com/api/v/kronos-forecast");
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://vendsdk.com/api/v/kronos-forecast")
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/7862.json, and this resource appears in /discovery/resources and /discovery/search.