get_mnemonic
"The get_mnemonic method returns the user's mnemonic seed phrase, in encrypted or plain text format."
| Structure | Type | Description | 
|---|---|---|
| format | string | Either encrypted or plaintext. Defaults to encrypted. | 
| password | string | The password to decrypt your stored mnemonic phrase. Only required if plaintext format is requested. | 
| Structure | Type | Description | 
|---|---|---|
| format | string | Same as the input format parameter. | 
| mnemonic | string | For plaintext requests, the decrypted mnemonic seed phrase | 
| encrypted_mnemonic_data | object | For 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
}