Skip to content

Get Weight Copiers

GET /api/validator/weight_copier/v1
NameInTypeRequiredDescription
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200,

200 — Validator weight copiers retrieved successfully

Section titled “200 — Validator weight copiers retrieved successfully”

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"hotkey"
],
"properties": {
"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"
}
}
}
}
}
},
"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\": 50,\n \"total_items\": 6,\n \"total_pages\": 1,\n \"next_page\": null,\n \"prev_page\": null\n },\n \"data\": [\n {\n \"hotkey\": {\n \"ss58\": \"5CsvRJXuR955WojnGMdok1hbhffZyB4N5ocrv82f3p5A2zVp\",\n \"hex\": \"0x2402d2dd859f24ff5305ce12d54e02f3c2cafe6788af4b405bbe0d407695af37\"\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5GP7c3fFazW9GXK8Up3qgu2DJBk8inu4aK9TZy3RuoSWVCMi\",\n \"hex\": \"0xbefb4b2b719c0dc08273b9293fa8166180fe3c0e6e0fc9f4cb224f429dc8163c\"\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5E4hBXkG9uVc1y9zdNzgCiLHrPbFukChkYeN1LxFnZgg4ASL\",\n \"hex\": \"0x58763203153d0830a28f0b75ca997490280611ab2fcac63d30ca8555b151e403\"\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5EWLgJHBVE64kJKb3GWzzh33QEPNcj6UNr4cqyr1kkDsaVrk\",\n \"hex\": \"0x6c058da17bc7d63e08f10d97e6f7996a3edcf8105b150a8c5b789a0c6d97d803\"\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5CVS9d1NcQyWKUyadLevwGxg6LgBcF9Lik6NSnbe5q59jwhE\",\n \"hex\": \"0x12dc421c6e53de8161d0b7a3d1f5377f9044d9f324f98249ca538e92dc90e27e\"\n }\n },\n {\n \"hotkey\": {\n \"ss58\": \"5D4oo3Z5VFUJtFWcK9wtfPqkGnzVubSFMnWnMKUVkDxsrWSj\",\n \"hex\": \"0x2c50388e613feadf0f4a2643453a6dfd28d868001e6e2288c2333c06d2640a5b\"\n }\n }\n ]\n}"
}
}

404 — Validator weight copiers not found

Section titled “404 — Validator weight copiers not found”

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

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