Get Miner Weights History
Endpoint
Section titled “Endpoint”GET /api/miner/weights/history/v1Description
Section titled “Description”Requires a Pro subscription
Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer | ✅ | Subnet |
miner_uid | query | integer | Neuron ID | |
validator_uid | query | integer | UID of validator | |
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": 10, "default": 0 }, "total_items": { "type": "integer", "example": 832055321, "default": 0 }, "total_pages": { "type": "integer", "example": 83205533, "default": 0 }, "next_page": { "type": "integer", "example": 2, "default": 0 }, "prev_page": {} } }, "data": { "type": "array", "items": { "type": "object", "properties": { "block_number": { "type": "integer", "example": 4107385, "default": 0 }, "timestamp": { "type": "string", "example": "2024-10-23T17:02:36Z" }, "netuid": { "type": "integer", "example": 1, "default": 0 }, "miner_uid": { "type": "integer", "example": 48, "default": 0 }, "validator_uid": { "type": "integer", "example": 3, "default": 0 }, "weight": { "type": "string", "example": "0.71012436102845807584" } } } } }}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.