# Retrieve wallet storage data Retrieves data associated with a wallet specific storage key. Authentication is required using domain owner signature. Endpoint: GET /user/{account}/wallet/storage/{key} 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): - `createdDate` (string) The date the storage key was created Example: "2021-01-01" - `updatedDate` (string) The date the storage key was last updated Example: "2021-01-01" - `key` (string) The key of the storage data Example: "key1" - `data` (string) The data of the storage key Example: "value1" - `schema` (string) A serialized Zod schema that represents the 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} ## Response 404 fields