Skip to main content
API referenceAccounts

Account Deregistrations

Last updated

GET
/api/v1/accounts/{ss58}/deregistrations

Fetch one account's neuron-deregistration footprint per subnet over a recent window (7d/30d/90d): each subnet's NeuronDeregistered eviction count with the first and last eviction timestamps, plus account totals, an HHI concentration of where its deregistration activity is focused, and the dominant subnet — DERIVED from UID reuse (the slots where this account was the PREVIOUS holder); NeuronDeregistered has never been emitted by the runtime, the payload's derivation block states the lower bound, and degraded marks an answer nothing derived. The eviction-side complement to GET /api/v1/accounts/{ss58}/registrations and the account-level companion to GET /api/v1/chain/deregistrations, distinct from GET /api/v1/accounts/{ss58}/subnets (current registration state).

Path Parameters

ss58*string

An SS58-encoded account address -- a hotkey or coldkey.

Query Parameters

window?string

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.

Default"30d"

Value in

  • "7d"
  • "30d"
  • "90d"

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/accounts/5F4tQyWrhfGVcNhoqeiNsR6KjD4wMZ2kfhLj4oHYuyHbZAc3/deregistrations"
{  "data": {    "address": "example",    "concentration": 0.5,    "degraded": {      "detail": "example",      "reason": "example"    },    "derivation": {      "is_lower_bound": false,      "lookback_days": 1,      "method": "GET",      "unattributed_registrations": 1,      "window_registrations": 1    },    "dominant_netuid": 7,    "schema_version": 1,    "subnet_count": 1,    "subnets": [      {        "deregistrations": 1,        "first_deregistered_at": "2026-06-01T00:00:00.000Z",        "last_deregistered_at": "2026-06-01T00:00:00.000Z",        "netuid": 7      }    ],    "total_deregistrations": 1,    "window": "7d"  },  "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}