Skip to content

Get Neuron Deregistrations

GET /api/subnet/neuron/deregistration/v1
NameInTypeRequiredDescription
netuidqueryintegerSubnet
uidqueryintegerNeuron ID
hotkeyquerystringHotkey of neuron
block_numberqueryintegerThe exact block number
block_startqueryintegerblock number for start of range
block_endqueryintegerblock number for end of range
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200,
orderquerystring

Media: application/json

{
"type": "object",
"properties": {
"pagination": {
"type": "object",
"properties": {
"current_page": {
"type": "integer",
"example": 1,
"default": 0
},
"per_page": {
"type": "integer",
"example": 50,
"default": 0
},
"total_items": {
"type": "integer",
"example": 291123,
"default": 0
},
"total_pages": {
"type": "integer",
"example": 5823,
"default": 0
},
"next_page": {
"type": "integer",
"example": 2,
"default": 0
},
"prev_page": {}
}
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"block_number": {
"type": "integer",
"example": 4107358,
"default": 0
},
"timestamp": {
"type": "string",
"example": "2024-10-23T16:57:12Z"
},
"netuid": {
"type": "integer",
"example": 42,
"default": 0
},
"uid": {
"type": "integer",
"example": 221,
"default": 0
},
"hotkey": {
"type": "object",
"properties": {
"ss58": {
"type": "string",
"example": "5DcnuvnVM4mRv1rzQKTDakfDssvoSru1spwQod8N2hM6m96y"
},
"hex": {
"type": "string",
"example": "0x44b51b68b1776162a2543e3bfafb8f7ebf53dd0a634da6086520b3818dcc1829"
}
}
},
"coldkey": {
"type": "object",
"properties": {
"ss58": {
"type": "string",
"example": "5HbUBeLHB4EYw8VHc6RCDD5S1CBD3ewpunpNqYVxegE8yzL2"
},
"hex": {
"type": "string",
"example": "0xf4a3bf793d82cb19e0822cc4836d9a8818786900b29e8f7d66f4da1c6c17171d"
}
}
},
"incentive": {
"type": "string",
"example": "0.0018921187151903563"
},
"emission": {
"type": "string",
"example": "1219773"
},
"was_drained": {
"type": "boolean",
"example": true,
"default": true
}
}
}
}
}
}

Media: application/json

{
"type": "object",
"properties": {}
}

All Taostats API requests require an Authorization header containing your API key. See Getting Started.