Skip to content

Live: Get Pallet Storage Item

Returns the live value of a specific storage item on the subtensor chain. The response includes the decoded value, the block at which the value was read (hash and height), the encoded storage keys, the pallet name and palletIndex, the storageItem name, and optional runtime metadata (name, modifier, fallback, docs, type).

The pallet_id path parameter selects the pallet (by name or index) and id selects the storage item within it. Use /api/v1/live/pallets/{pallet_id}/storage to enumerate available storage items first.

GET /api/v1/live/pallets/{pallet_id}/storage/{id}
NameInTypeRequiredDescription
pallet_idpathstring
idpathstring

Media: application/json

Schema
{
"type": "object",
"required": [
"at",
"keys",
"pallet",
"palletIndex",
"storageItem",
"value"
],
"properties": {
"at": {
"type": "object",
"required": [
"hash",
"height"
],
"properties": {
"hash": {
"type": "string"
},
"height": {
"type": "string"
}
}
},
"keys": {
"type": "array",
"items": {
"type": "string"
}
},
"metadata": {
"allOf": [
{
"type": "object",
"required": [
"docs",
"fallback",
"modifier",
"name",
"type"
],
"properties": {
"docs": {
"type": "string"
},
"fallback": {
"type": "string"
},
"modifier": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {}
}
}
],
"nullable": true
},
"pallet": {
"type": "string"
},
"palletIndex": {
"type": "string"
},
"storageItem": {
"type": "string"
},
"value": {}
}
}

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.