v1

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

Request a one time code required to setup a new wallet

If a wallet does not already exist, a one time code will created and sent to the provided email address.

post/user/wallet

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 sent one time code to verify email address

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
}