Live: List Pallet Storage Items
Description
Section titled “Description”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}.
Endpoint
Section titled “Endpoint”GET /api/v1/live/pallets/{pallet_id}/storageParameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
pallet_id | path | string | ✅ |
Responses
Section titled “Responses”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" } }}Try it
Section titled “Try it”Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).
Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.