Authenticated user information and management
VKRA uses Supabase for user authentication and management. Most user-related operations are handled through the VKRA Dashboard.
When you are logged into the dashboard, your requests are authenticated using a session cookie or a Bearer token.
Retrieve information about the currently authenticated user.
GET /auth/me
Response Body
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "user@example.com",
"metadata": {
"full_name": "John Doe",
"company": "AI Labs"
}
}User management (signup, login, password resets) is primarily handled through the official VKRA Dashboard.