v1

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

Create a wallet with a verified email address

The one time code generated with the associated POST request must be provided in the request body.

post/user/wallet/register

Request body

emailAddressstring

Email address to register

passwordstring

Password to use when creating new wallet

Example request

{
  "emailAddress": "user@email.com",
  "password": "secret-password"
}

Response

Successfully submitted request to create wallet

emailAddressstring

Email address associated with the account

activeboolean

Flag to indicate the account is active

clocknumber

Expected epoch milliseconds for cryptography operations

Example response

{
  "emailAddress": "myname@email.com",
  "active": true,
  "clock": 1722600216741
}