Skip to main content
API referenceSubnets

Subnet Movers

Last updated

GET
/api/v1/subnets/movers

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 D1 rollup.

Query Parameters

window?string

Value in

  • "7d"
  • "30d"
  • "90d"
sort?string

Value in

  • "stake"
  • "emission"
  • "validators"
  • "neurons"
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/subnets/movers"
{  "data": {    "end_date": "2026-06-01",    "movers": [      {        "emission_delta_tao": 0.5,        "emission_end_tao": 0.5,        "emission_pct_change": 0.5,        "emission_share_pct": 0.5,        "emission_start_tao": 0.5,        "netuid": 7,        "neurons_delta": 1,        "neurons_end": 1,        "neurons_start": 1,        "stake_delta_tao": 0.5,        "stake_end_tao": 0.5,        "stake_pct_change": 0.5,        "stake_share_pct": 0.5,        "stake_start_tao": 0.5,        "validators_delta": 1,        "validators_end": 1,        "validators_start": 1      }    ],    "network": {      "gainers": 1,      "losers": 1,      "total_emission_delta_tao": "-1234567.891234500",      "total_emission_end_tao": "327838334.635978200",      "total_emission_start_tao": "327838334.635978200",      "total_stake_delta_tao": "-1234567.891234500",      "total_stake_end_tao": "327838334.635978200",      "total_stake_start_tao": "327838334.635978200",      "total_validators_delta": 1,      "total_validators_end": 1,      "total_validators_start": 1,      "unchanged": 1    },    "schema_version": 1,    "sort": "stake",    "start_date": "2026-06-01",    "subnet_count": 1,    "window": "7d"  },  "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}