Skip to main content
API referenceChain

Chain Alpha Volume

Last updated

GET
/api/v1/chain/alpha-volume

Fetch the network-wide rolling 24h buy/sell alpha-volume leaderboard: every subnet that had StakeAdded (buy) or StakeRemoved (sell) volume in the last 24h (subnets with no volume are excluded) ranked by total_volume_tao (biggest market activity first, ?limit <=100), each with the same buy/sell/total volume + sentiment scorecard as GET /api/v1/subnets/{netuid}/volume, plus a network rollup (with its own net/gross sentiment reading) and a distribution (count, mean, min, p25, median, p75, p90, max) of the per-subnet total volume. Computed live from the account_events stream; schema-stable zeros + empty leaderboard when cold. Fixed 24h window (no ?window= param), matching the per-subnet route's own framing.

Query Parameters

limit?integer
Range1 <= value <= 100
format?string

Response format override. Use csv to download the route rows as text/csv; json keeps the default response envelope.

Value in

  • "json"
  • "csv"

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/chain/alpha-volume"
{  "data": {    "network": {      "buy_count": 1,      "buy_volume_alpha": 0.5,      "buy_volume_tao": 0.5,      "net_volume_alpha": 0.5,      "sell_count": 1,      "sell_volume_alpha": 0.5,      "sell_volume_tao": 0.5,      "sentiment": "bullish",      "sentiment_ratio": 0.9966,      "total_volume_alpha": 0.5,      "total_volume_tao": 0.5    },    "observed_at": "2026-06-01T00:00:00.000Z",    "schema_version": 1,    "subnet_count": 1,    "subnets": [      {        "buy_count": 1,        "buy_volume_alpha": 0.5,        "buy_volume_tao": 0.5,        "net_volume_alpha": 0.5,        "netuid": 7,        "schema_version": 1,        "sell_count": 1,        "sell_volume_alpha": 0.5,        "sell_volume_tao": 0.5,        "sentiment": "bullish",        "sentiment_ratio": 0.9966,        "total_volume_alpha": 0.5,        "total_volume_tao": 0.5,        "vol_mcap_ratio": 0.9966,        "window": "24h"      }    ],    "volume_distribution": {      "count": 1,      "max": 0.5,      "mean": 0.5,      "median": 0.5,      "min": 0.5,      "p25": 0.5,      "p75": 0.5,      "p90": 0.5    },    "window": "24h"  },  "meta": {    "artifact_path": "example",    "cache": "short",    "contract_version": "2026-06-29.1",    "generated_at": "2026-06-01T00:00:00.000Z",    "pagination": {      "collection": "example",      "cursor": 1,      "limit": 1,      "next_cursor": 1,      "order": "asc",      "returned": 1,      "sort": "example",      "total": 1    },    "published_at": "2026-06-01T00:00:00.000Z",    "source": "live-cron-prober",    "stale_contract": {      "built_under": "example",      "live": "example"    }  },  "ok": true,  "schema_version": 1}