---
title: "Get Me"
method: GET
path: "/v1/me"
tags: ["v1-auth"]
---

# Get Me

`GET /v1/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"
}

## Response `200`

Successful Response

- object

---

[API](https://skmtc.net/tryardent/apis/fastapi.md) · [All operations](https://skmtc.net/tryardent/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryardent/fastapi/revisions/71b66f68e19c/schema)
