v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Wallet storage endpoints

Retrieve wallet storage data

Retrieves data associated with a wallet specific storage key. Authentication is required using domain owner signature.

get/user/{account}/wallet/storage/{key}

Path parameters

accountstring required

The account ID to authenticate

Headers

Authorizationstring required

The JWT access token that authorizes the request

Response

Storage key data

createdDatestring

The date the storage key was created

updatedDatestring

The date the storage key was last updated

keystring

The key of the storage data

datastring

The data of the storage key

schemastring

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 response

{
  "createdDate": "2021-01-01",
  "updatedDate": "2021-01-01",
  "key": "key1",
  "data": "value1"
}