GET
/
api
/
v1
/
wallet
/
address
/
{network}
/
{publicKey}
curl --request GET \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/address/{network}/{publicKey} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "address": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

network
string
required

The blockchain network (XDC, ETH, BTC, BSC, POL).

publicKey
string
required

The public key.

Response

200
application/json
Wallet address retrieved successfully
data
object