Skip to content

Get Subnet Registration Cost History

GET /api/subnet/registration_cost/history/v1
NameInTypeRequiredDescription
block_numberqueryintegerThe exact block number
block_startqueryintegerblock number for start of range
block_endqueryinteger
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200,
orderquerystring

Media: application/json

{
"type": "object",
"properties": {
"pagination": {
"type": "object",
"properties": {
"current_page": {
"type": "integer",
"example": 1,
"default": 0
},
"per_page": {
"type": "integer",
"example": 5,
"default": 0
},
"total_items": {
"type": "integer",
"example": 584,
"default": 0
},
"total_pages": {
"type": "integer",
"example": 117,
"default": 0
},
"next_page": {
"type": "integer",
"example": 2,
"default": 0
},
"prev_page": {}
}
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"block_number": {
"type": "integer",
"example": 4107489,
"default": 0
},
"timestamp": {
"type": "string",
"example": "2024-10-23T17:23:24Z"
},
"registration_cost": {
"type": "string",
"example": "1223897705583"
}
}
}
}
}
}

Media: application/json

{
"type": "object",
"properties": {}
}

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