POST
/
api
/
v1
/
wallet
/
generate
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/generate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "network_type": "<string>"
}'
{
  "data": {
    "network": "<string>",
    "memonic": "<string>",
    "xpub": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
network
string

The blockchain network such as XDC, ALGO, ETH, BTC, BSC, POL

network_type
string

The network type such as mainnet or testnet

Response

201
application/json
Address generated successfully
data
object