---
title: "Get the current user"
method: GET
path: "/api/users/me"
tags: ["users"]
---

# Get the current user

`GET /api/users/me`

Returns the profile of the authenticated user (the caller). Use this at the start of a session to ground subsequent calls (e.g., to confirm the caller's identity before making destructive changes). This tool does not accept a user ID; it always returns the authenticated caller.

## Response `200`

Successful Response

- UserResponse — Represents a user account with profile information.
  - `id` string, required — Unique user identifier with 'intuser_' prefix
  - `email` string, nullable — User's email address
  - `first_name` string, nullable — User's first name
  - `last_name` string, nullable — User's last name
  - `timezone` string, nullable — User's home timezone as an IANA zone id (e.g. 'America/Los_Angeles'); null until a home zone is captured
  - `is_active` boolean, required — Whether this user account is currently active
  - `is_superuser` boolean, required — Whether this user has superuser/admin privileges
  - `is_verified` boolean, required — Whether the account is marked verified. An internal account flag, not proof of email verification — it can be true even when `email` is null
  - `storage_used_bytes` integer, required — Total bytes of assets the user is currently storing
  - `storage_limit_bytes` integer, required — Maximum bytes of assets the user may store
  - `created_at` string, date-time, required — When this user account was created
  - `updated_at` string, date-time, required — When this user account was last updated

## Other responses

- `401` — Unauthorized
- `403` — The credentials are valid but not authorized for this operation — for example an API key whose action or library scope excludes it, or a credential type this operation does not accept.
- `404` — User not found
- `429` — Rate limit exceeded. Retry after the interval in the `Retry-After` header.

---

[API](https://skmtc.net/gumnut-ai/apis/gumnut-api.md) · [All operations](https://skmtc.net/gumnut-ai/apis/gumnut-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gumnut-ai/gumnut-api/versions/e71db45f5d4a/schema)
