---
title: "Get user information"
method: GET
path: "/user"
tags: ["User Management"]
---

# Get user information

`GET /user`

Retrieves the authenticated user's profile information including:
- User ID
- Email
- Full name
- Avatar URL
- Account tier

**Use case:**
This endpoint provides the current user's details needed for displaying profile information in the client UI.

**Returns:**
- `404 Not Found` if the user doesn't exist in the database (should not occur for authenticated requests)

## Response `200`

User information returned

- User — User details
  - `image` string — URL of the user image. If updating the image, could be a base64 encoded image.
  - `email` string, email
  - `full_name` string
  - `id` string, required
  - `name` string
  - `tier` 'EDUCATION' | 'INDIE' | 'PROFESSIONAL' | 'ENTERPRISE' | 'UNKNOWN' — The tier of the user

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/diversion/apis/diversion-core-api.md) · [All operations](https://skmtc.net/diversion/apis/diversion-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/diversion/diversion-core-api/revisions/38a18aba804b/schema)
