User

Get authenticated user profile

Retrieve the profile information for the currently authenticated user

get/api/user/profile

Response

User profile retrieved successfully

successboolean

Example response

{
  "success": true,
  "user": {
    "walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "name": "John Doe",
    "email": "john@example.com",
    "isEmailVerified": true,
    "imageUrl": "https://example.com/avatar.jpg",
    "metadata": {
      "foo": "bar"
    }
  }
}

Changes