User
Get authenticated user profile
Retrieve the profile information for the currently authenticated user
get/api/user/profile
Response
User profile retrieved successfully
Example response
{
"success": true,
"user": {
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"embeddedWalletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"privyId": "1234567890abcdef1234567890abcdef12345678",
"name": "John Doe",
"email": "john@example.com",
"isSubscribed": true,
"imageUrl": "https://example.com/avatar.jpg",
"metadata": {
"foo": "bar"
}
}
}