Get Metagraph
Endpoint
Section titled “Endpoint”GET /api/metagraph/latest/v1Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer | Subnet ID | |
search | query | string | Search across UID, hotkey, coldkey, axon_ip | |
uid | query | integer | Neuron ID | |
active | query | boolean | ||
hotkey | query | string | SS58 or hex format | |
coldkey | query | string | SS58 or hex format | |
validator_permit | query | boolean | Does the neuron have a validator permit? | |
is_immunity_period | query | boolean | In immunity? | |
is_child_key | query | boolean | Is parent hotkey | |
page | query | integer | The page number of the response. | |
limit | query | integer | The number of responses. max is 1024 | |
order | query | — |
Responses
Section titled “Responses”200 — Metagraph retrieved successfully
Section titled “200 — Metagraph retrieved successfully”Media: application/json
Schema
{ "type": "object", "required": [ "pagination", "data" ], "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "hotkey", "coldkey", "netuid", "uid", "block_number", "timestamp", "stake", "trust", "validator_trust", "consensus", "incentive", "mech_incentive", "dividends", "emission", "active", "validator_permit", "updated", "mech_updated", "daily_reward", "registered_at_block", "is_immunity_period", "rank", "is_child_key", "root_weight", "alpha_stake", "root_stake", "root_stake_as_alpha", "total_alpha_stake" ], "properties": { "active": { "type": "boolean" }, "alpha_stake": { "type": "string" }, "axon": { "nullable": true }, "block_number": { "type": "integer", "format": "int32" }, "coldkey": { "type": "object", "required": [ "ss58", "hex" ], "properties": { "hex": { "type": "string", "description": "The hex format of the hot key" }, "ss58": { "type": "string", "description": "The SS58 format of the hot key" } } }, "consensus": { "type": "string" }, "daily_burned_alpha": { "type": "string", "description": "mining emission burned by owner hotkey", "nullable": true }, "daily_burned_alpha_as_tao": { "type": "string", "description": "mining emission burned by owner hotkey denominated in tao", "nullable": true }, "daily_mining_alpha": { "type": "string", "description": "post dtao mining alpha", "nullable": true }, "daily_mining_alpha_as_tao": { "type": "string", "description": "post dtao mining alpha denominated in tao", "nullable": true }, "daily_mining_tao": { "type": "string", "description": "pre dtao mining emission", "nullable": true }, "daily_owner_alpha": { "type": "string", "description": "owner cut of alpha emission", "nullable": true }, "daily_owner_alpha_as_tao": { "type": "string", "description": "owner cut of alpha emission denominated in tao", "nullable": true }, "daily_reward": { "type": "string", "description": "deprecated" }, "daily_total_rewards_as_tao": { "type": "string", "description": "total rewards denominated in tao", "nullable": true }, "daily_validating_alpha": { "type": "string", "description": "validating alpha emission", "nullable": true }, "daily_validating_alpha_as_tao": { "type": "string", "description": "validating alpha emission denominated in tao", "nullable": true }, "daily_validating_tao": { "type": "string", "description": "validating tao emission (post dtao this is root dividends, pre dtao this is all dividends)", "nullable": true }, "dividends": { "type": "string" }, "emission": { "type": "string" }, "hotkey": { "type": "object", "required": [ "ss58", "hex" ], "properties": { "hex": { "type": "string", "description": "The hex format of the hot key" }, "ss58": { "type": "string", "description": "The SS58 format of the hot key" } } }, "incentive": { "type": "string" }, "is_child_key": { "type": "boolean" }, "is_immunity_period": { "type": "boolean" }, "is_owner_hotkey": { "type": "boolean", "nullable": true }, "mech_incentive": { "type": "array", "items": { "type": "string" } }, "mech_updated": { "type": "array", "items": { "type": "integer", "format": "int32" } }, "netuid": { "type": "integer", "format": "int32" }, "rank": { "type": "integer", "format": "int32" }, "registered_at_block": { "type": "integer", "format": "int32" }, "root_stake": { "type": "string" }, "root_stake_as_alpha": { "type": "string" }, "root_weight": { "type": "string" }, "stake": { "type": "string" }, "timestamp": { "type": "string", "format": "date-time" }, "total_alpha_stake": { "type": "string" }, "trust": { "type": "string" }, "uid": { "type": "integer", "format": "int32" }, "updated": { "type": "integer", "format": "int32" }, "validator_permit": { "type": "boolean" }, "validator_trust": { "type": "string" } } } }, "pagination": { "type": "object", "required": [ "current_page", "per_page", "total_items", "total_pages" ], "properties": { "current_page": { "type": "integer", "format": "int32" }, "next_page": { "type": "integer", "format": "int32", "nullable": true }, "per_page": { "type": "integer", "format": "int32" }, "prev_page": { "type": "integer", "format": "int32", "nullable": true }, "total_items": { "type": "integer", "format": "int32" }, "total_pages": { "type": "integer", "format": "int32" } } } }}Examples
{ "Result": { "value": "{\n \"pagination\": {\n \"current_page\": 1,\n \"per_page\": 1024,\n \"total_items\": 256,\n \"total_pages\": 1,\n \"next_page\": null,\n \"prev_page\": null\n },\n \"data\": [\n {\n \"hotkey\": {\n \"ss58\": \"5F4tQyWrhfGVcNhoqeiNsR6KjD4wMZ2kfhLj4oHYuyHbZAc3\",\n \"hex\": \"0x84d83d08ca89f8e60424ffa286f165c16dd8752e4faa4d8977221e6720678d28\"\n },\n \"coldkey\": {\n \"ss58\": \"5HBtpwxuGNL1gwzwomwR7sjwUt8WXYSuWcLYN6f9KpTZkP4k\",\n \"hex\": \"0xe2a8d08674697d6ee2ccec36f0e207653788275b619392256e509be04d32950d\"\n },\n \"netuid\": 19,\n \"uid\": 140,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"792325581164158\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.86720073243305104143\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.12471198596169985504\",\n \"emission\": \"1706598192\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 40,\n \"daily_reward\": \"34131963840\",\n \"registered_at_block\": 2064863,\n \"is_immunity_period\": false,\n \"rank\": 1,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5F2CsUDVbRbVMXTh9fAzF9GacjVX7UapvRxidrxe7z8BYckQ\",\n \"hex\": \"0x82cca2238d379e49d84e9e1b8df35dd496d6a8b4ca4f511ac9e38fa04d42f86b\"\n },\n \"coldkey\": {\n \"ss58\": \"5CMEwRYLefRmtJg7zzRyJtcXrQqmspr9B1r1nKySDReA37Z1\",\n \"hex\": \"0x0c9c8ec969246de9771893dd7e89e5e70483e860c45359b3223cd01d598f0c7d\"\n },\n \"netuid\": 19,\n \"uid\": 117,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"648023371821209\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.87295338368810559243\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.11268787670710307469\",\n \"emission\": \"1542023549\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 111,\n \"daily_reward\": \"30840470980\",\n \"registered_at_block\": 1977986,\n \"is_immunity_period\": false,\n \"rank\": 2,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1\",\n \"hex\": \"0xbc0e6b701243978c1fe73d721c7b157943a713fca9f3c88cad7a9f7799bc6b26\"\n },\n \"coldkey\": {\n \"ss58\": \"5GcCZ2BPXBjgG88tXJCEtkbdg2hNrPbL4EFfbiVRvBZdSQDC\",\n \"hex\": \"0xc8f623c92b47ac9645d6744f3d448cdb7a2a3b08a22a39bfd1db0afbd9c07117\"\n },\n \"netuid\": 19,\n \"uid\": 4,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"640217156283279\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.87849240863660639353\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.10434119172961013199\",\n \"emission\": \"1427820764\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 115,\n \"daily_reward\": \"28556415280\",\n \"registered_at_block\": 1957991,\n \"is_immunity_period\": false,\n \"rank\": 3,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5CsvRJXuR955WojnGMdok1hbhffZyB4N5ocrv82f3p5A2zVp\",\n \"hex\": \"0x2402d2dd859f24ff5305ce12d54e02f3c2cafe6788af4b405bbe0d407695af37\"\n },\n \"coldkey\": {\n \"ss58\": \"5EJAqczgzCMvWcmXhKMZH4vMS5gPy8BjeuHjz5o5yN6RYzX2\",\n \"hex\": \"0x62bd7c89cb48ba4c074c5fac9f94df57754e8ab9b319af34d0e05d35e8deeb26\"\n },\n \"netuid\": 19,\n \"uid\": 153,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"581569295073910\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.9965667200732433051\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.10823224231326771954\",\n \"emission\": \"1480942812\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 244,\n \"daily_reward\": \"29618856240\",\n \"registered_at_block\": 1985173,\n \"is_immunity_period\": false,\n \"rank\": 4,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5HEo565WAy4Dbq3Sv271SAi7syBSofyfhhwRNjFNSM2gP9M2\",\n \"hex\": \"0xe4df2c7397e1443378b4cec0f2fca9dac1d0923d020e7aab11dd41428014ab59\"\n },\n \"coldkey\": {\n \"ss58\": \"5E9fVY1jexCNVMjd2rdBsAxeamFGEMfzHcyTn2fHgdHeYc5p\",\n \"hex\": \"0x5c40bc195cb2fd36b8b0e2397087c73b555b81e0bfe2975a40b9f78e039d4442\"\n },\n \"netuid\": 19,\n \"uid\": 3,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"575228993068732\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.88645761806668192569\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.0962844281681544213\",\n \"emission\": \"1317454750\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 117,\n \"daily_reward\": \"26349095000\",\n \"registered_at_block\": 3413998,\n \"is_immunity_period\": false,\n \"rank\": 5,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5FxcZraZACr4L78jWkcYe3FHdiwiAUzrKLVtsSwkvFobBKqq\",\n \"hex\": \"0xac4ba7704623c5beb4950ef97ddea57c9c12b91938c86f28475f8050741ac956\"\n },\n \"coldkey\": {\n \"ss58\": \"5GP8N57T2oja6qR9y3FQDYjrEFxnhmx3ZuiadE64yw6h5For\",\n \"hex\": \"0xbefdd94cdeeacbf8b273d99710ce7e26b19248ebda2813ba85343164740e5145\"\n },\n \"netuid\": 19,\n \"uid\": 226,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"505718087961429\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.84034485389486533913\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.08062867170214389258\",\n \"emission\": \"1103312755\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 59,\n \"daily_reward\": \"22066255100\",\n \"registered_at_block\": 2426854,\n \"is_immunity_period\": false,\n \"rank\": 6,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5FFApaS75bv5pJHfAp2FVLBj9ZaXuFDjEypsaBNc1wCfe52v\",\n \"hex\": \"0x8cafec513739d2ed72700fe9ef1b4a62c3d0b06ddf6258bb00cbac2cbced5f68\"\n },\n \"coldkey\": {\n \"ss58\": \"5GZSAgaVGQqegjhEkxpJjpSVLVmNnE2vx2PFLzr7kBBMKpGQ\",\n \"hex\": \"0xc6da3c3be1d3c3863640ade174ca1463b019e1b5bdafed225b40f1507fe41a67\"\n },\n \"netuid\": 19,\n \"uid\": 97,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"503914980731481\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.82662699320973525597\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.08052185854886701762\",\n \"emission\": \"1101822981\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 100,\n \"daily_reward\": \"22036459620\",\n \"registered_at_block\": 3382654,\n \"is_immunity_period\": false,\n \"rank\": 7,\n \"is_child_key\": true,\n \"axon\": {\n \"block\": 3375046,\n \"ip\": \"195.189.97.59\",\n \"ipType\": 4,\n \"placeholder1\": 0,\n \"placeholder2\": 0,\n \"port\": 8091,\n \"protocol\": 4,\n \"version\": 693\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5Fe9gVCja3NtKW9pHSHYpCF649VzFHbjBNS4ViyBrf8nWnrn\",\n \"hex\": \"0x9e36bb47b8c802b4c5c2dc45dbf202e7c261d8ba749f7638fc4350d6be8a0246\"\n },\n \"coldkey\": {\n \"ss58\": \"5F953EH5EVc9BUKYLhktAdzH1waVdgEtwyh5ygTrwCuJkwML\",\n \"hex\": \"0x8808fcbb586b3f240e7c315ccad0a622a306a3a56fb1465c57d7123d3d147f07\"\n },\n \"netuid\": 19,\n \"uid\": 95,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"346236095338140\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.98840314335851071946\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.06393530174715800717\",\n \"emission\": \"874935263\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 50,\n \"daily_reward\": \"17498705260\",\n \"registered_at_block\": 3880125,\n \"is_immunity_period\": false,\n \"rank\": 8,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5Dd8gaRNdhm1YP7G1hcB1N842ecAUQmbLjCRLqH5ycaTGrWv\",\n \"hex\": \"0x44f7a87e1b1de487eaf9e10413f485855444a46148bfe32cf6b225fdc610a03b\"\n },\n \"coldkey\": {\n \"ss58\": \"5GBkWRazB6zjyKg8GtkDr347Vndkq8pWock2XQP1NMEn1jo5\",\n \"hex\": \"0xb650935993e58e010080f144c2870f04a92ea487b39190cd7c29a6705f6b6565\"\n },\n \"netuid\": 19,\n \"uid\": 246,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"292782042924920\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.90223544670786602579\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.04975967040512703136\",\n \"emission\": \"680984655\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 90,\n \"daily_reward\": \"13619693100\",\n \"registered_at_block\": 3636119,\n \"is_immunity_period\": false,\n \"rank\": 9,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5HYk8DMKWK8TJyPzZJ9vmZk7B5NPCgjnZoyZ1ZsB54RXdN47\",\n \"hex\": \"0xf28fac64d7a3d8bdbf5b6db34de1607d7e8cd2db343d5f2790057f7f3cec0e1e\"\n },\n \"coldkey\": {\n \"ss58\": \"5Eq8b9p6zJMjEXyH9sX4DRMYspnUyorEKq3Zmha1WN6AC4sf\",\n \"hex\": \"0x7a5a858b450bcc5ab6b8493c3ccb1722a1bd279fb322b20362bc94851f14bf75\"\n },\n \"netuid\": 19,\n \"uid\": 51,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"284825952509484\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.89877164873731593805\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.04762340733958953231\",\n \"emission\": \"651719185\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 12,\n \"daily_reward\": \"13034383700\",\n \"registered_at_block\": 3769492,\n \"is_immunity_period\": false,\n \"rank\": 10,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5CAQhe9pWMe9anWX9qbK6Z9RydRth7S6WDopapSr6uShGum5\",\n \"hex\": \"0x0459b8ac46933d4cbbd4f0b36934704e7a726851b359ca2ee8d5e704a8896e02\"\n },\n \"coldkey\": {\n \"ss58\": \"5F4kLq8YVzHYj8uv41BUB9ocqTGxAJECeDbYfcqJFKqAhSMj\",\n \"hex\": \"0x84bd11456ecf5f3abcfc983232f3fb2d97bcd2cf05657852774d15a1cea2f366\"\n },\n \"netuid\": 19,\n \"uid\": 142,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"202143824450890\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.84771496147096971084\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.03205920500495918212\",\n \"emission\": \"438760001\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 176,\n \"daily_reward\": \"8775200020\",\n \"registered_at_block\": 4112860,\n \"is_immunity_period\": false,\n \"rank\": 11,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5DQ2Geab6G25wiZ4jGH6wJM8fekrm1QhV9hrRuntjBVxxKZm\",\n \"hex\": \"0x3af7e19ea604f5275dcdb1e27570f67607ffa6c64e361d442cf35f6abcbfee0a\"\n },\n \"coldkey\": {\n \"ss58\": \"5DALJz7mndb2b4bAaxtokVSrKpd9PS48qYPyYerb4xFs7KDb\",\n \"hex\": \"0x30872cb8fc561e0c968e34f58d10af7a46331fa5d165d7f0f3a320b517651a71\"\n },\n \"netuid\": 19,\n \"uid\": 215,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"151044064311818\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.89149309529259174487\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.02554360265506981003\",\n \"emission\": \"349680092\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 95,\n \"daily_reward\": \"6993601840\",\n \"registered_at_block\": 3798681,\n \"is_immunity_period\": false,\n \"rank\": 12,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5E4z3h9yVhmQyCFWNbY9BPpwhx4xFiPwq3eeqmBgVF6KULde\",\n \"hex\": \"0x58aef7b1efb44806fe14c6c58d0c1eb634a59fd2513f0ced6f2d10e0569af40d\"\n },\n \"coldkey\": {\n \"ss58\": \"5DSsZGwBuYHRDA7HzdZUVBhKKpZpJKcf7rTd9y5Gz1SQyo9V\",\n \"hex\": \"0x3d24492db9f83a5b27b95fe33ce43037f5b68feb8049701936b32a62651ebc93\"\n },\n \"netuid\": 19,\n \"uid\": 111,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"148862999987234\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.87214465552758068208\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.02441443503471427481\",\n \"emission\": \"334212615\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 119,\n \"daily_reward\": \"6684252300\",\n \"registered_at_block\": 2454572,\n \"is_immunity_period\": false,\n \"rank\": 13,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5G1NjW9YhXLadMWajvTkfcJy6up3yH2q1YzMXDTi6ijanChe\",\n \"hex\": \"0xae66d26fed539fc501b4340faaef65e20feb0dbf388658997c034babad06bf43\"\n },\n \"coldkey\": {\n \"ss58\": \"5DyMLUKuc6T3QFAXKd3w6dTcxmcH1WBZ1gDrRwJAnPf7N28w\",\n \"hex\": \"0x546329490cb14895d40150b0b0da6dbbbff19cd36eaa8d12a37f21f842fb1153\"\n },\n \"netuid\": 19,\n \"uid\": 133,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"106789877105515\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.95408560311284046693\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.01930266269932097353\",\n \"emission\": \"264183009\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 89,\n \"daily_reward\": \"5283660180\",\n \"registered_at_block\": 2067553,\n \"is_immunity_period\": false,\n \"rank\": 14,\n \"is_child_key\": true,\n \"axon\": {\n \"block\": 2556013,\n \"ip\": \"13.58.200.217\",\n \"ipType\": 4,\n \"placeholder1\": 0,\n \"placeholder2\": 0,\n \"port\": 6670,\n \"protocol\": 4,\n \"version\": 661\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5CVS9d1NcQyWKUyadLevwGxg6LgBcF9Lik6NSnbe5q59jwhE\",\n \"hex\": \"0x12dc421c6e53de8161d0b7a3d1f5377f9044d9f324f98249ca538e92dc90e27e\"\n },\n \"coldkey\": {\n \"ss58\": \"5EsutAGoekFjUm8DHAXSpLBGMKDUGALsLCbEb5JCwK6yiwTH\",\n \"hex\": \"0x7c797baca820bed49ab3052fcf319a134839d8c9ee19adcf3d8fea28656d3567\"\n },\n \"netuid\": 19,\n \"uid\": 82,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"63521930154300\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.98791485465781643397\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.0117799649042496376\",\n \"emission\": \"161268935\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 252,\n \"daily_reward\": \"3225378700\",\n \"registered_at_block\": 2431531,\n \"is_immunity_period\": false,\n \"rank\": 15,\n \"is_child_key\": true,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5F27Eqz2PhyMtGMEce898x31DokNqRVxkm5AhDDe6rDGNvoY\",\n \"hex\": \"0x82b9ad19799ddb1bf0c237ee5f0c4726d5c2ad27d71d2c276ee20d31b5391c37\"\n },\n \"coldkey\": {\n \"ss58\": \"5GYXZBZoFA74nzAGg4R9omd2SfCDHiGufETtrLso6BRzv2p4\",\n \"hex\": \"0xc6292094723749e68a8a8adbb40029a94e18e704c44b9f2400d50f6f3d496f7b\"\n },\n \"netuid\": 19,\n \"uid\": 136,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"53863118349847\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.8986648355840390631\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.00910963607232776379\",\n \"emission\": \"124763055\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 180,\n \"daily_reward\": \"2495261100\",\n \"registered_at_block\": 3514113,\n \"is_immunity_period\": false,\n \"rank\": 16,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5HbScNssaEfioJHXjcXdpyqo1AKnYjymidGF8opcF9rTFZdT\",\n \"hex\": \"0xf49e736c28d28ffd1a72809332be7e46b9b02c50b4c55ffd06b0a62c2902c643\"\n },\n \"coldkey\": {\n \"ss58\": \"5F4XcaiEBkE3ARx2kG29KJ8e94nFfUZQYC4c7zfticastxiD\",\n \"hex\": \"0x84923842db1f92476d4dad309474d4b5e8b8a45d273310e7bc775179c2cbef2c\"\n },\n \"netuid\": 19,\n \"uid\": 234,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"49227651137624\",\n \"trust\": \"0\",\n \"validator_trust\": \"0.95356679636835278859\",\n \"consensus\": \"0\",\n \"incentive\": \"0\",\n \"dividends\": \"0.00892652780956740673\",\n \"emission\": \"122348544\",\n \"active\": true,\n \"validator_permit\": true,\n \"updated\": 71,\n \"daily_reward\": \"2446970880\",\n \"registered_at_block\": 3806095,\n \"is_immunity_period\": false,\n \"rank\": 17,\n \"is_child_key\": false,\n \"axon\": null\n },\n {\n \"hotkey\": {\n \"ss58\": \"5DvcNTacjrX1Zq8oCSnABUa3U8gcTwYDwqxhZA4kKscNzk23\",\n \"hex\": \"0x524c08eea3b9a27dbd1a3f6640bed136147eac6a965175729473aebeaf768b07\"\n },\n \"coldkey\": {\n \"ss58\": \"5FjacWntLV1zWZFMRiGmhmE66uJwMQ3aDwnxz4HNEkuu7FnX\",\n \"hex\": \"0xa25ae2b1506e4bce576a10cdb2b4ea96c677c6d7fae0ef3776abdac72738dd35\"\n },\n \"netuid\": 19,\n \"uid\": 19,\n \"block_number\": 4336192,\n \"timestamp\": \"2024-11-24T14:22:48Z\",\n \"stake\": \"73939664807\",\n \"trust\": \"0.89213397421225299458\",\n \"validator_trust\": \"0\",\n \"consensus\": \"0.00558480201419089036\",\n \"incentive\": \"0.00579842832074464027\",\n \"dividends\": \"0\",\n \"emission\": \"79418903\",\n \"active\": false,\n \"validator_permit\": true,\n \"updated\": 2374456,\n \"daily_reward\": \"1588378060\",\n \"registered_at_block\": 4260627,\n \"is_immunity_period\": false,\n \"rank\": 18
/* … truncated, full schema in /api/openapi.json */400 — Bad request
Section titled “400 — Bad request”404 — Metagraph not found
Section titled “404 — Metagraph not found”500 — Internal server error
Section titled “500 — Internal server error”Try it
Section titled “Try it”Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).
Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.