Skip to main content
GET
/
api
/
v1
/
market
/
overview
Market Overview
curl --request GET \
  --url https://api.example.com/api/v1/market/overview
Returns a sorted list of all tracked coins with their latest price, signal score, funding rate, and master score. Coins are sorted by signal strength (strongest deviation from neutral first). Also includes the current market regime and Fear & Greed index.

Parameters

No parameters required.

Example Request

curl -X GET "https://krovn.io/api/v1/market/overview" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "coins": [
    {
      "symbol": "BTCUSDT",
      "price": 87420.50,
      "signal": 62,
      "funding": 0.0003,
      "master": 68
    },
    {
      "symbol": "ETHUSDT",
      "price": 3245.80,
      "signal": 55,
      "funding": 0.0001,
      "master": 54
    },
    {
      "symbol": "SOLUSDT",
      "price": 142.35,
      "signal": -45,
      "funding": -0.0002,
      "master": 38
    }
  ],
  "regime": "MARKUP",
  "fearGreed": 65,
  "timestamp": "2026-03-21T12:30:00.000Z"
}
The master score ranges from 0-100 where 50 is neutral. Values above 50 indicate bullish conditions, below 50 bearish. The signal field represents the aggregated trading signal strength.