Skip to main content
GET
/
api
/
v1
/
intelligence
Intelligence (All-in-One)
curl --request GET \
  --url https://api.example.com/api/v1/intelligence
Returns all available data for a single coin in one response: current price, funding rate, trading signal, market regime, plus 24h candles, funding history, and OI history. This is the best endpoint when you need a comprehensive view of a coin.

Parameters

ParameterTypeDefaultDescription
symbolstringBTCUSDTTrading pair

Example Request

curl -X GET "https://krovn.io/api/v1/intelligence?symbol=BTCUSDT" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "symbol": "BTCUSDT",
  "price": 87420.50,
  "funding": 0.0003,
  "signal": 62,
  "regime": "MARKUP",
  "regimeScore": 72,
  "fearGreed": 65,
  "candles24h": [
    {
      "open_time": "2026-03-20T13:00:00.000Z",
      "c": "86850.30"
    },
    {
      "open_time": "2026-03-20T14:00:00.000Z",
      "c": "87010.80"
    }
  ],
  "fundingHistory": [
    {
      "timestamp": "2026-03-20T16:00:00.000Z",
      "rate": "0.00028500"
    },
    {
      "timestamp": "2026-03-21T00:00:00.000Z",
      "rate": "0.00025100"
    }
  ],
  "oiHistory": [
    {
      "timestamp": "2026-03-21T10:00:00.000Z",
      "oi_value_usd": "18540000000"
    },
    {
      "timestamp": "2026-03-21T11:00:00.000Z",
      "oi_value_usd": "18572000000"
    }
  ]
}
This endpoint combines data from multiple sources in a single call. The candles24h array contains the last 24 hourly close prices, fundingHistory the last 10 settlements, and oiHistory the last 24 OI snapshots.