Skip to main content
GET
/
api
/
v1
/
coins
/
overview
Coins Overview
curl --request GET \
  --url https://api.example.com/api/v1/coins/overview
Returns a pre-computed overview of the top coins sorted by open interest. This endpoint is optimized for fast reads — data is computed by the Collector and served instantly from cache.

Parameters

ParameterTypeDefaultDescription
limitnumber100Number of coins to return (max 100)

Example Request

curl -X GET "https://krovn.io/api/v1/coins/overview?limit=3" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "coins": [
    {
      "symbol": "BTCUSDT",
      "price": 87420.50,
      "change24h": 2.15,
      "oiUsd": 18540000000,
      "funding": 0.0003,
      "volume24h": 42500000000
    },
    {
      "symbol": "ETHUSDT",
      "price": 3245.80,
      "change24h": 1.82,
      "oiUsd": 8920000000,
      "funding": 0.0001,
      "volume24h": 18700000000
    },
    {
      "symbol": "SOLUSDT",
      "price": 142.35,
      "change24h": -0.45,
      "oiUsd": 3150000000,
      "funding": -0.0002,
      "volume24h": 5200000000
    }
  ],
  "count": 3,
  "source": "krovn",
  "timestamp": "2026-03-21T12:30:00.000Z"
}