Skip to main content
GET
/
v0
/
user
/
me
Get User Account
curl --request GET \
  --url https://api.example.com/v0/user/me
{
  "_links": {
    "kyc": {
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me"
    },
    "wallets": {
      "href": "/v0/wallets"
    }
  },
  "user": {
    "email": "[email protected]",
    "id": 12345
  },
  "wallets": [
    {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78",
      "chain_id": 8453,
      "id": 1,
      "is_eoa": true,
      "is_primary": true
    }
  ]
}

Headers

x-juno-jwt
string | null

Query Parameters

expand
string[]

Expand related resources. Options: wallets, status_history, onboarding

Response

User account retrieved successfully

HAL-style hypermedia links for navigation.

user
UserData · object
required

User profile.

wallets
WalletData · object[] | null

User's wallets. Only included when expand=wallets is specified.

status_history
UserStatusData · object[] | null

Full audit trail of status changes. Only included when expand=status_history is specified.

onboarding
OnboardingData · object

Onboarding state. Only included when expand=onboarding is specified.