Developer Portal

KONIS Prediction API

Real-time 5-minute crypto prediction signals for BTC, ETH, SOL, and XRP. Built on Polymarket & perp trade-flow analysis. 200 requests / second per API key.

GET/prediction_all

All Symbols

All four symbols in a single call. Saves round-trips for multi-pair clients.

Request

curl -H "X-Api-Key: $KONIS_API_KEY" \
  https://konis.ai/api/v7/prediction_all

Response — 200 OK

{
  "BTC": {
    "status": "ok",
    "prediction": "UP",
    "confidence": 0.78,
    "elapsed_minutes": 1.4,
    "age_seconds": 0.8,
    "timestamp": "2026-04-12T01:30:00Z",
    "raw": {
      "current_window": {
        "open_price": 83420.5,
        "current_price": 83510.2,
        "weighted_signal": 0.3492,
        "quality_score": 0.82,
        "cross_pair_agreement": 0.75,
        "ma10": 83380.1,
        "ma20": 83290.7,
        "bb_upper": 83650.0,
        "bb_lower": 83100.0,
        "depth_imbalance": 0.12,
        "funding_rate_signal": 0.05,
        "volatility_score": 0.34,
        "signal_weights": {
          "price_momentum": { "signal": 0.42, "weight": 0.15 },
          "candle_momentum": { "signal": 0.31, "weight": 0.10 },
          "orderbook": { "signal": 0.18, "weight": 0.12 },
          "whale_flow": { "signal": 0.55, "weight": 0.10 },
          "cex_leader": { "signal": -0.08, "weight": 0.08 },
          "exchange_consensus": { "signal": 0.22, "weight": 0.10 },
          "depth_imbalance": { "signal": 0.12, "weight": 0.08 },
          "funding_rate": { "signal": 0.05, "weight": 0.07 },
          "hyper_prediction": { "signal": 0.60, "weight": 0.10 },
          "zigzag": { "signal": 0.35, "weight": 0.05 },
          "technical": { "signal": 0.15, "weight": 0.05 }
        }
      }
    }
  },
  "ETH": { "status": "ok", "prediction": "DOWN", "confidence": 0.65, "..." : "..." },
  "SOL": { "status": "ok", "prediction": "UP", "confidence": 0.72, "..." : "..." },
  "XRP": { "status": "ok", "prediction": "UP", "confidence": 0.61, "..." : "..." }
}

Rate Limit

200 requests per second per API key (sliding 1-second window). Exceeding the limit returns 429 Rate limit exceeded. Quant tier subscription required for API access.