Skip to content

Get Wallet Seed API

David Tavarez edited this page Jun 20, 2020 · 2 revisions

Get wallet seed.

URL : /v2

Method : get_wallet_seed

Params

  • username(string): The username that was used to create the wallet.
  • password(string): The user's password. Since the password is transmitted as plaintext, future versions will require https.

Request

{
  "jsonrpc": "2.0",
  "method": "get_wallet_seed",
  "id": 1,
  "params": {
    "username": "David",
    "password": "P@ssw0rd123!"
  }
}

Response

{
  "id": 1,
  "jsonrpc": "2.0",
  "result": {
    "wallet_seed": "agree muscle erase plunge grit effort provide electric social decide include whisper tunnel dizzy bean tumble play robot fire verify program solid weasel nuclear"
  }
}