Documentation / API reference / Subnet
Get Subnet Miner Incentive Distribution
Last reviewed 2026-09-18
Returns subnet incentive distribution records with immunity-period status and block numbers. Supply the subnet netuid to inspect the incentive distribution.
Try it
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer (int32) | Yes | Subnet |
Responses
200 — Subnet incentive distribution retrieved successfully
| Field | Type | Required |
|---|---|---|
data | array | Yes |
data[].block_number | integer (int32) | Yes |
data[].incentive | string | Yes |
data[].is_immunity_period | boolean | Yes |
pagination | object | Yes |
pagination.current_page | integer (int32) | Yes |
pagination.next_page | integer (int32), nullable | |
pagination.per_page | integer (int32) | Yes |
pagination.prev_page | integer (int32), nullable | |
pagination.total_items | integer (int32) | Yes |
pagination.total_pages | integer (int32) | Yes |
Example response
json
{
"data": [
{
"block_number": 4107396,
"incentive": "0.19053940642404821851",
"is_immunity_period": true
},
{
"block_number": 4107396,
"incentive": "0.16380560006103608759",
"is_immunity_period": false
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"per_page": 98,
"prev_page": null,
"total_items": 98,
"total_pages": 1
}
}Other responses
| Status | Meaning |
|---|---|
400 | Bad request |
404 | Subnet incentive distribution not found |
500 | Internal server error |
Every request needs an Authorization header holding your API key — see Getting started with the Taostats API.