Subnet Movers
Last updated
Fetch the cross-subnet momentum leaderboard: every subnet ranked by its change in stake, emission, validator, and neuron count between the window's start and end neuron_daily snapshots, with start/end values, deltas, percentage changes, and each subnet's share of network stake/emission at the end. A network block totals stake/emission/validators across all subnets with gainer/loser/unchanged counts. Sort by stake (default), emission, validators, or neurons; limit caps the list (default 20, max 100). Computed live from the neuron_daily rollup.
Query Parameters
Trailing lookback window the response is computed over, ending at the most recent data point rather than at today. Accepts 7d, 30d, 90d. A longer window is not a superset of a shorter one -- rankings and rates are recomputed over the whole window, not summed.
"30d"Value in
- "7d"
- "30d"
- "90d"
Column to rank the result by; pair with order for direction. Options are per-tool; see this parameter's enum. Defaults to stake.
"stake"Value in
- "stake"
- "emission"
- "validators"
- "neurons"
Maximum number of rows to return in one page (at most 100). A larger value, or a non-positive one, is rejected with 400 invalid_query -- so a short page means the result set is exhausted, not that the server quietly capped you (#9916). Omitted, the server applies 20.
1 <= value <= 10020Response format override. Use csv to download the route rows as text/csv; json keeps the default response envelope.
"json"Value in
- "json"
- "csv"
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/subnets/movers"{ "data": { "covered_days": 1, "end_date": "2026-06-01", "movers": [ { "emission_delta_alpha": 0.5, "emission_end_alpha": 0.5, "emission_pct_change": 0.5, "emission_share_pct": 0.5, "emission_start_alpha": 0.5, "netuid": 7, "neurons_delta": 1, "neurons_end": 1, "neurons_start": 1, "stake_delta_alpha": 0.5, "stake_end_alpha": 0.5, "stake_pct_change": 0.5, "stake_share_pct": 0.5, "stake_start_alpha": 0.5, "validators_delta": 1, "validators_end": 1, "validators_start": 1 } ], "network": { "gainers": 1, "losers": 1, "total_emission_delta_alpha": "-1234567.891234500", "total_emission_end_alpha": "327838334.635978200", "total_emission_start_alpha": "327838334.635978200", "total_stake_delta_alpha": "-1234567.891234500", "total_stake_end_alpha": "327838334.635978200", "total_stake_start_alpha": "327838334.635978200", "total_validators_delta": 1, "total_validators_end": 1, "total_validators_start": 1, "unchanged": 1 }, "requested_days": 1, "schema_version": 1, "sort": "stake", "start_date": "2026-06-01", "subnet_count": 1, "window": "7d", "window_truncated": false }, "meta": { "artifact_path": "example", "cache": "short", "contract_version": "2026-06-29.1", "generated_at": "2026-06-01T00:00:00.000Z", "observed_through": "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}