Output Schema
{
"properties": {
"cache_info": {
"additionalProperties": {
"type": "string"
},
"description": "TTL hints for internal caches (5m, 10m, etc.).",
"type": "object"
},
"fear_and_greed": {
"description": "Latest Fear & Greed index payload from Alternative.me.",
"type": [
"object",
"null"
]
},
"meta": {
"description": "Field-level descriptions, units, and caching hints.",
"type": "object"
},
"prices": {
"additionalProperties": {
"properties": {
"current_price": {
"description": "Spot price in USD sourced from CoinGecko.",
"type": [
"number",
"null"
]
},
"last_updated": {
"description": "ISO-8601 timestamp of the asset snapshot.",
"format": "date-time",
"type": "string"
},
"log_returns_20min": {
"description": "Predicted BTC log returns over 20 minutes.",
"type": [
"object",
"null"
]
},
"log_returns_24hour": {
"description": "Predicted log returns over 24 hours (direction + magnitude).",
"type": [
"object",
"null"
]
},
"log_returns_8hour": {
"description": "Predicted log returns over 8 hours (direction + magnitude).",
"type": [
"object",
"null"
]
},
"prediction_10min": {
"description": "Combined Allora inference for 10-minute forward price (SOL only).",
"type": [
"object",
"null"
]
},
"prediction_5min": {
"description": "Combined Allora inference for 5-minute forward price. Contains `testnet` and/or `mainnet` floats when available.",
"type": [
"object",
"null"
]
},
"prediction_8hour": {
"description": "Combined Allora inference for 8-hour forward price.",
"type": [
"object",
"null"
]
},
"symbol": {
"description": "Asset ticker symbol.",
"type": "string"
}
},
"required": [
"symbol",
"current_price",
"last_updated"
],
"type": "object"
},
"description": "Per-asset snapshot containing spot price, short/medium/long-term predictions, and derived metadata.",
"type": "object"
},
"source": {
"description": "Data provenance for each section of the response.",
"properties": {
"current_prices": {
"type": "string"
},
"fear_and_greed": {
"type": "string"
},
"predictions": {
"type": "string"
}
},
"type": "object"
},
"timestamp": {
"description": "Server timestamp when the prediction bundle was generated.",
"format": "date-time",
"type": "string"
}
},
"required": [
"prices",
"timestamp",
"source",
"meta"
],
"type": "object"
}