Generate / Recover normal wallet or HD wallet with password or passphrase
api/v3
Request to generate a normal wallet or HD wallet. To generate an HD wallet instead of a single-address wallet, pass the HD
parameter as true
. The index
parameter can only be used with HD wallet creation and references the HD wallet address to return in the JSON response.
Request Body - Content-Type: application/json;charset=utf-8
Parameter | Type | Required | Description |
| string | Optional | The wallet name what you want to save. |
| string | Optional | Regional language to generate or to recover your wallet's mnemonic phrase. (Default: English) |
| string | Optional | A 12- to 24-word BIP39 phrase to seed your wallet. |
| string | Optional | Password to encrypt your wallet. |
| string | Optional | Passphrase for your wallet. |
| boolean | Optional | When it is set as true, it will make or recover HD wallet. |
| number | Optional | The index of the HD wallet to lookup. If present, a specific wallet address will be returned from this HDwallet (HD Wallet only). |
You can create an HD or normal wallet. (You must give $name otherwise it generates random mnemonic)POST/api/v3/wallet
Example request (HD Wallet)
Example request (Single Address Wallet)
Last updated