Skip to content

Get Subnet Registration Cost

GET /api/subnet/registration_cost/latest/v1
Fills the fields below — runs automatically if your API key is saved.
Get a free API key →
curl

No parameters.

200 — Subnet registration cost retrieved successfully

Section titled “200 — Subnet registration cost retrieved successfully”

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"block_number",
"timestamp",
"registration_cost",
"is_purchase"
],
"properties": {
"block_number": {
"type": "integer",
"format": "int32"
},
"is_purchase": {
"type": "boolean"
},
"registration_cost": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
}
}
}
},
"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\": 1,\n \"total_items\": 1,\n \"total_pages\": 1,\n \"next_page\": null,\n \"prev_page\": null\n },\n \"data\": [\n {\n \"block_number\": 4107485,\n \"timestamp\": \"2024-10-23T17:22:36Z\",\n \"registration_cost\": \"1224037775699\"\n }\n ]\n}"
}
}

404 — Subnet registration cost not found

Section titled “404 — Subnet registration cost not found”

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