v1
latestOpenAPI 3.1.02026-08-0413468163.9 KBv1-auth
Get Me
Get current user profile and lightweight org check.
This is the bootstrap endpoint - call this after login for initial load. Returns user profile and whether they have orgs. Frontend should then call GET /v1/orgs for org list and GET /v1/orgs/{id} for active org details.
Returns: user: Full user profile from public.users has_orgs: Boolean indicating if user has any organizations default_org_id: First org ID (or null if no orgs)
Example response: { "user": { "user_id": "...", "email": "john@example.com", "full_name": "John Doe", "created_at": "2025-01-01T00:00:00Z" }, "has_orgs": true, "default_org_id": "abc-123" }
get/v1/me
Response
Successful Response
object required