---
title: "Get current user"
method: GET
path: "/v1beta/me"
tags: ["Users"]
---

# Get current user

`GET /v1beta/me`

Returns the authenticated user's profile and organization memberships. Only available for user accounts (JWT auth), not API keys.

## Response `200`

Success

- GetMeResponse — GetMeResponse contains the authenticated user's profile.
  - `organizations` Organization[] — Organizations the user is a member of.
    - `created_at` string, date-time, required — Timestamp when the organization was created.
    - `id` string, required — Unique ID for the organization. Pattern: org_[0-9a-hjkmnp-tv-z]{26}
    - `logo_image_url` string, nullable — Optional — organizations may not have a logo.
    - `name` string, required — Human-readable organization name.
  - `user` User, required — User represents a human user account. Returned by GetUser (endpoint deferred).
    - `email` string, email, required
    - `family_name` string, nullable — Family name (last name) of the user.
    - `given_name` string, nullable — Given name (first name) of the user.
    - `id` string, required
    - `name` string, required — Display name of the user.
    - `profile_image_url` string, nullable — URL of the user's profile image.

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed - missing or invalid API key
- `403` — Authorization failed - valid key but insufficient permissions
- `404` — Resource not found
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/factify-inc/apis/factify-api.md) · [All operations](https://skmtc.net/factify-inc/apis/factify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/factify-inc/factify-api/revisions/8baabdfb82bf/schema)
