Account Creation

A standalone account is an Algorand address and private key pair that is not stored on disk. The private key is most often in the 25-word mnemonic form.

Standalone accounts have a low setup cost as you do not need to connect to a separate client that depends on separate hardware. All you need is the 25-word human-readable mnemonic of the relevant account.

Create an Algorand Account

API Doc

Swagger Doc | ReDoc

Curl call example

curl -X POST "http://0.0.0.0:7000/v2/nftkit/nft/Algorand/account/create" 
-H  "accept: application/json" 
-d ""

Response :

{
  "address": "string",
  "mnemonic": "string"
}

You can later import the created account to any wallet supporting Algorand using the mnemonic phrase.

Last updated