Skip to main content
GET
/
v0
/
user
/
me
Get User Account
curl --request GET \
  --url https://api.sumvin.com/v0/user/me \
  --header 'Authorization: Bearer <token>'
{
  "_links": {
    "kyc-status": {
      "href": "/v0/kyc/status"
    },
    "self": {
      "href": "/v0/user/me"
    },
    "wallets": {
      "href": "/v0/wallets"
    }
  },
  "user": {
    "email": "user@example.com",
    "id": "usr_abc123"
  },
  "wallets": [
    {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD78",
      "chain_id": 8453,
      "is_eoa": true,
      "is_primary": true
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token from Authorization header (Bearer token)

Headers

x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

x-juno-jwt
string | null

JWT token from x-juno-jwt header

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
WalletDataBase · 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.