Skip to content

Live: List Pallet Storage Items

Returns the list of storage items defined by a given Substrate pallet on the live subtensor node. For each storage item the response exposes name, modifier (Optional or Default), fallback bytes, on-chain docs, and the encoded type (as described in the runtime metadata).

The pallet_id path parameter selects the pallet by name (e.g. SubtensorModule, System) or numeric index. Use this to discover which storage items exist before fetching a specific one via /api/v1/live/pallets/{pallet_id}/storage/{id}.

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

Media: application/json

Schema
{
"type": "object",
"required": [
"items",
"pallet",
"palletIndex"
],
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"docs",
"fallback",
"modifier",
"name",
"type"
],
"properties": {
"docs": {
"type": "string"
},
"fallback": {
"type": "string"
},
"modifier": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {}
}
}
},
"pallet": {
"type": "string"
},
"palletIndex": {
"type": "string"
}
}
}

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.