On this page

get_mnemonic

"The get_mnemonic method returns the user's mnemonic seed phrase, in encrypted or plain text format."

StructureTypeDescription
formatstringEither encrypted or plaintext. Defaults to encrypted.
passwordstringThe password to decrypt your stored mnemonic phrase. Only required if plaintext format is requested.

StructureTypeDescription
formatstringSame as the input format parameter.
mnemonicstringFor plaintext requests, the decrypted mnemonic seed phrase
encrypted_mnemonic_dataobjectFor encrpyted requests, the encrypted format and ciphertext for the mnemonic seed phrase

POST
get_mnemonic
{
  "userpass": "RPC_UserP@SSW0RD",
  "mmrpc": "2.0",
  "method": "get_mnemonic",
  "params": {
    "format": "encrypted"
  },
  "id": 0
}

POST
get_mnemonic
{
  "userpass": "RPC_UserP@SSW0RD",
  "mmrpc": "2.0",
  "method": "get_mnemonic",
  "params": {
    "format": "plaintext",
    "password": "Q^wJZg~Ck3.tPW~asnM-WrL"
  },
  "id": 0
}