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

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201
application/json

Private key generated successfully

The response is of type object.