v1

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

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.

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

Path parameters

accountstring required

The account ID to authenticate

Headers

Authorizationstring required

The JWT access token that authorizes the request

Response

List of keys

keystring

The name of the storage key

schemastring

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.

examplestring

An example of the data that can be stored in the storage key

descriptionstring

A description of the storage key

Example response

[
  {
    "key": "key1",
    "example": "value1",
    "description": "This storage key is used to store the XYZ data"
  }
]