Get Neuron Deregistrations
Endpoint
Section titled “Endpoint”GET /api/subnet/neuron/deregistration/v1Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer | Subnet | |
uid | query | integer | Neuron ID | |
hotkey | query | string | Hotkey of neuron | |
block_number | query | integer | The exact block number | |
block_start | query | integer | block number for start of range | |
block_end | query | integer | block number for end of range | |
timestamp_start | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
page | query | integer | The page number of the response. | |
limit | query | integer | The number of responses. max is 200, | |
order | query | string |
Responses
Section titled “Responses”200 — 200
Section titled “200 — 200”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 } } } } }}400 — 400
Section titled “400 — 400”Media: application/json
{ "type": "object", "properties": {}}Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.