# Retrieve a list of keys that can be used with wallet storage Retrieve a list of keys that can be used with wallet storage. Authentication with an API key is required. Endpoint: GET /user/{account}/wallet/storage/keys Version: 1.0.0 ## Path parameters: - `account` (string, required) The account ID to authenticate ## Header parameters: - `Authorization` (string, required) The JWT access token that authorizes the request Example: "my-jwt-access-token" ## Response 200 fields (application/json): - `key` (string) The name of the storage key Example: "key1" - `schema` (string) A serialized Zod schema that represents the required data format. Use https://github.com/StefanTerdell/json-schema-to-zod to recreate the Zod schema on a client. Example: {"\\\"type\\\":\\\"string\\\"":null,"\\\"$schema\\\":\\\"http://json-schema.org/draft-07/schema#\\\"":null} - `example` (string) An example of the data that can be stored in the storage key Example: "value1" - `description` (string) A description of the storage key Example: "This storage key is used to store the XYZ data" ## Response 400 fields ## Response 403 fields