Get current wallet

Retrieve the current authenticated user's wallet information. This endpoint returns detailed wallet data including profile information, account status, and associated metadata. Authentication is required via bearer token or API key.

GET
/wallets/me
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api-testnet.dual.network/wallets/me"
{
  "id": "string",
  "nickname": "string",
  "email": "string",
  "phone_number": "string",
  "avatar": {
    "id": "string",
    "name": "string",
    "type": "string",
    "url": "string",
    "hash": "string",
    "is_public": true,
    "when_created": "2019-08-24T14:15:22Z"
  },
  "language": "en",
  "fqdn": "string",
  "activated": true,
  "disabled": true,
  "account": {
    "address": "string",
    "public_key": "string",
    "type": "ED25519"
  },
  "onboarding": true,
  "when_created": "2019-08-24T14:15:22Z",
  "when_modified": "2019-08-24T14:15:22Z"
}
{
  "code": 0,
  "message": "string",
  "details": {}
}
{
  "code": 0,
  "message": "string",
  "details": {}
}