Skip to main content
POST
/
api
/
v0
/
wallets
Create a new wallet
curl --request POST \
  --url https://api.brl.xyz/api/v0/wallets \
  --header 'Content-Type: application/json' \
  --data '
{
  "wallet-name": "My Trading Wallet"
}
'
{
  "wallet": {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "assets": [
      "eth-base/brlv",
      "eth-base/wbrly"
    ]
  }
}

Body

application/json
wallet-name
string
required

Name for the new wallet

Example:

"My Trading Wallet"

Response

Wallet created successfully

wallet
object
required