Skip to main content
API referenceSubnets

Economics

Last updated

GET
/api/v1/economics

List per-subnet validator and economic metrics (counts, stake, registration cost, alpha price, alpha market-cap proxy, alpha FDV proxy, emission share, and registration block height). Default order is emission share descending. Filter by netuid/registration_allowed, search by name/slug, and sort with sort=<field>&order=asc|desc — the two are separate parameters (e.g. ?sort=alpha_market_cap_tao&order=desc or ?sort=block&order=asc), NOT a combined field:desc token.

Query Parameters

netuid?integer
Range0 <= value
registration_allowed?string

Value in

  • "true"
  • "false"
q?string
Lengthlength <= 200
fields?string
Match^[A-Za-z_][A-Za-z0-9_]*(,[A-Za-z_][A-Za-z0-9_]*)*$
limit?integer
Range1 <= value <= 1000
cursor?integer
Range0 <= value
sort?string

Field to sort by — the bare field name only (e.g. sort=total_stake_tao). Pair with the separate order parameter to choose direction; a combined field:desc token is NOT supported.

Value in

  • "alpha_fdv_tao"
  • "alpha_market_cap_tao"
  • "alpha_price_change_1d"
  • "alpha_price_change_1h"
  • "alpha_price_change_1m"
  • "alpha_price_change_7d"
  • "alpha_price_tao"
  • "block"
  • "emission_share"
  • "max_stake_tao"
  • "max_uids"
  • "max_validators"
  • "miner_count"
  • "miner_readiness"
  • "name"
  • "netuid"
  • "open_slots"
  • "registration_cost_tao"
  • "subnet_volume_tao"
  • "total_stake_tao"
  • "validator_count"
order?unknown

Sort direction for sort: asc or desc (default desc). This is a separate parameter from sort — e.g. ?sort=emission_share&order=desc.

Value in

  • "asc"
  • "desc"
format?string

Response format override. Use csv to download the transformed list 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/economics"
{  "data": {    "captured_at": "2026-06-01T00:00:00.000Z",    "contract_version": "2026-06-29.1",    "generated_at": "2026-06-01T00:00:00.000Z",    "network": "example",    "notes": "Example description.",    "schema_version": 1,    "subnets": [      {        "alpha_fdv_tao": 0.5,        "alpha_in_pool": 0.5,        "alpha_market_cap_tao": 0.5,        "alpha_out_pool": 0.5,        "alpha_price_tao": 0.5,        "emission_share": 0.5,        "max_stake_tao": 0.5,        "max_uids": 1,        "max_validators": 1,        "miner_count": 1,        "name": "Example Subnet",        "netuid": 7,        "owner_coldkey": "example",        "owner_hotkey": "example",        "registration_allowed": false,        "registration_cost_tao": 0.5,        "slug": "example-subnet",        "subnet_volume_tao": 0.5,        "tao_in_pool_tao": 0.5,        "total_stake_tao": 0.5,        "validator_count": 1      }    ],    "summary": {      "registration_open_count": 1,      "subnet_count": 1,      "total_alpha_value_tao": "327838334.635978200",      "total_miners": 1,      "total_network_value_tao": "327838334.635978200",      "total_root_value_tao": "327838334.635978200",      "total_stake_tao": "327838334.635978200",      "total_validators": 1,      "with_economics_count": 1    }  },  "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}